Lines Matching defs:config
50 struct gpio_regmap_config *config)
78 config->regmap, irq,
84 config->irq_domain = regmap_irq_get_domain(irq_data);
91 struct gpio_regmap_config config = {0};
112 config.regmap = regmap;
113 config.parent = &pdev->dev;
114 config.ngpio = 8;
118 config.reg_dat_base = base + GPIO_REG_IN;
119 config.reg_set_base = base + GPIO_REG_OUT;
121 config.reg_dir_out_base = GPIO_REGMAP_ADDR(base + GPIO_REG_DIR);
124 ret = sl28cpld_gpio_irq_init(pdev, base, &config);
129 config.reg_set_base = base + GPO_REG_OUT;
132 config.reg_dat_base = base + GPI_REG_IN;
139 return PTR_ERR_OR_ZERO(devm_gpio_regmap_register(&pdev->dev, &config));