Lines Matching defs:config
43 * @config: The new config for requested gpio. Reference
44 * "linux/gpio.h" for config details.
59 struct gpio_v2_line_config *config,
84 req.config = *config;
211 struct gpio_v2_line_config config;
214 memset(&config, 0, sizeof(config));
215 config.flags = GPIO_V2_LINE_FLAG_INPUT;
217 &config, CONSUMER);
267 struct gpio_v2_line_config config;
269 memset(&config, 0, sizeof(config));
270 config.flags = GPIO_V2_LINE_FLAG_OUTPUT;
271 config.num_attrs = 1;
272 config.attrs[0].attr.id = GPIO_V2_LINE_ATTR_ID_OUTPUT_VALUES;
274 gpiotools_set_bit(&config.attrs[0].mask, i);
275 gpiotools_assign_bit(&config.attrs[0].attr.values,
279 &config, CONSUMER);