diff options
Diffstat (limited to 'include/linux/i2c/pca953x.h')
-rw-r--r-- | include/linux/i2c/pca953x.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/linux/i2c/pca953x.h b/include/linux/i2c/pca953x.h index 81736d6a8db7..d5c5a60c8a0b 100644 --- a/include/linux/i2c/pca953x.h +++ b/include/linux/i2c/pca953x.h | |||
@@ -1,3 +1,9 @@ | |||
1 | #ifndef _LINUX_PCA953X_H | ||
2 | #define _LINUX_PCA953X_H | ||
3 | |||
4 | #include <linux/types.h> | ||
5 | #include <linux/i2c.h> | ||
6 | |||
1 | /* platform data for the PCA9539 16-bit I/O expander driver */ | 7 | /* platform data for the PCA9539 16-bit I/O expander driver */ |
2 | 8 | ||
3 | struct pca953x_platform_data { | 9 | struct pca953x_platform_data { |
@@ -7,6 +13,9 @@ struct pca953x_platform_data { | |||
7 | /* initial polarity inversion setting */ | 13 | /* initial polarity inversion setting */ |
8 | uint16_t invert; | 14 | uint16_t invert; |
9 | 15 | ||
16 | /* interrupt base */ | ||
17 | int irq_base; | ||
18 | |||
10 | void *context; /* param to setup/teardown */ | 19 | void *context; /* param to setup/teardown */ |
11 | 20 | ||
12 | int (*setup)(struct i2c_client *client, | 21 | int (*setup)(struct i2c_client *client, |
@@ -17,3 +26,5 @@ struct pca953x_platform_data { | |||
17 | void *context); | 26 | void *context); |
18 | char **names; | 27 | char **names; |
19 | }; | 28 | }; |
29 | |||
30 | #endif /* _LINUX_PCA953X_H */ | ||