You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
239 B
C

#ifndef _GPIO_LATCH_H_
#define _GPIO_LATCH_H_
#define GPIO_LATCH_DRIVER_NAME "gpio-latch"
struct gpio_latch_platform_data {
int base;
int num_gpios;
int *gpios;
int le_gpio_index;
bool le_active_low;
};
#endif /* _GPIO_LATCH_H_ */