diff options
Diffstat (limited to 'drivers/gpio')
-rw-r--r-- | drivers/gpio/wm8994-gpio.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/drivers/gpio/wm8994-gpio.c b/drivers/gpio/wm8994-gpio.c index 618398e4ed8e..c822baacd8fc 100644 --- a/drivers/gpio/wm8994-gpio.c +++ b/drivers/gpio/wm8994-gpio.c | |||
@@ -35,6 +35,29 @@ static inline struct wm8994_gpio *to_wm8994_gpio(struct gpio_chip *chip) | |||
35 | return container_of(chip, struct wm8994_gpio, gpio_chip); | 35 | return container_of(chip, struct wm8994_gpio, gpio_chip); |
36 | } | 36 | } |
37 | 37 | ||
38 | static int wm8994_gpio_request(struct gpio_chip *chip, unsigned offset) | ||
39 | { | ||
40 | struct wm8994_gpio *wm8994_gpio = to_wm8994_gpio(chip); | ||
41 | struct wm8994 *wm8994 = wm8994_gpio->wm8994; | ||
42 | |||
43 | switch (wm8994->type) { | ||
44 | case WM8958: | ||
45 | switch (offset) { | ||
46 | case 1: | ||
47 | case 2: | ||
48 | case 3: | ||
49 | case 4: | ||
50 | case 6: | ||
51 | return -EINVAL; | ||
52 | } | ||
53 | break; | ||
54 | default: | ||
55 | break; | ||
56 | } | ||
57 | |||
58 | return 0; | ||
59 | } | ||
60 | |||
38 | static int wm8994_gpio_direction_in(struct gpio_chip *chip, unsigned offset) | 61 | static int wm8994_gpio_direction_in(struct gpio_chip *chip, unsigned offset) |
39 | { | 62 | { |
40 | struct wm8994_gpio *wm8994_gpio = to_wm8994_gpio(chip); | 63 | struct wm8994_gpio *wm8994_gpio = to_wm8994_gpio(chip); |
@@ -136,6 +159,7 @@ static void wm8994_gpio_dbg_show(struct seq_file *s, struct gpio_chip *chip) | |||
136 | static struct gpio_chip template_chip = { | 159 | static struct gpio_chip template_chip = { |
137 | .label = "wm8994", | 160 | .label = "wm8994", |
138 | .owner = THIS_MODULE, | 161 | .owner = THIS_MODULE, |
162 | .request = wm8994_gpio_request, | ||
139 | .direction_input = wm8994_gpio_direction_in, | 163 | .direction_input = wm8994_gpio_direction_in, |
140 | .get = wm8994_gpio_get, | 164 | .get = wm8994_gpio_get, |
141 | .direction_output = wm8994_gpio_direction_out, | 165 | .direction_output = wm8994_gpio_direction_out, |