diff options
Diffstat (limited to 'include/linux/nsc_gpio.h')
| -rw-r--r-- | include/linux/nsc_gpio.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/linux/nsc_gpio.h b/include/linux/nsc_gpio.h index 27bf66f73868..135742cfada5 100644 --- a/include/linux/nsc_gpio.h +++ b/include/linux/nsc_gpio.h | |||
| @@ -22,13 +22,14 @@ | |||
| 22 | struct nsc_gpio_ops { | 22 | struct nsc_gpio_ops { |
| 23 | struct module* owner; | 23 | struct module* owner; |
| 24 | u32 (*gpio_config) (unsigned iminor, u32 mask, u32 bits); | 24 | u32 (*gpio_config) (unsigned iminor, u32 mask, u32 bits); |
| 25 | void (*gpio_dump) (unsigned iminor); | 25 | void (*gpio_dump) (struct nsc_gpio_ops *amp, unsigned iminor); |
| 26 | int (*gpio_get) (unsigned iminor); | 26 | int (*gpio_get) (unsigned iminor); |
| 27 | void (*gpio_set) (unsigned iminor, int state); | 27 | void (*gpio_set) (unsigned iminor, int state); |
| 28 | void (*gpio_set_high)(unsigned iminor); | 28 | void (*gpio_set_high)(unsigned iminor); |
| 29 | void (*gpio_set_low) (unsigned iminor); | 29 | void (*gpio_set_low) (unsigned iminor); |
| 30 | void (*gpio_change) (unsigned iminor); | 30 | void (*gpio_change) (unsigned iminor); |
| 31 | int (*gpio_current) (unsigned iminor); | 31 | int (*gpio_current) (unsigned iminor); |
| 32 | struct device* dev; /* for dev_dbg() support, set in init */ | ||
| 32 | }; | 33 | }; |
| 33 | 34 | ||
| 34 | extern ssize_t nsc_gpio_write(struct file *file, const char __user *data, | 35 | extern ssize_t nsc_gpio_write(struct file *file, const char __user *data, |
| @@ -36,3 +37,6 @@ extern ssize_t nsc_gpio_write(struct file *file, const char __user *data, | |||
| 36 | 37 | ||
| 37 | extern ssize_t nsc_gpio_read(struct file *file, char __user *buf, | 38 | extern ssize_t nsc_gpio_read(struct file *file, char __user *buf, |
| 38 | size_t len, loff_t *ppos); | 39 | size_t len, loff_t *ppos); |
| 40 | |||
| 41 | extern void nsc_gpio_dump(struct nsc_gpio_ops *amp, unsigned index); | ||
| 42 | |||
