diff options
author | Alexander Shiyan <shc_work@mail.ru> | 2012-11-22 00:07:32 +0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-26 15:38:44 -0800 |
commit | 273a4b8a58840773730e0134fe1af11d399cb7a0 (patch) | |
tree | 23280bf60a173837847409ace9657849009d3f3f /drivers/tty | |
parent | bc6835a41aea115d97a74d67dc95faa0bbc63d5f (diff) | |
download | linux-3.10-273a4b8a58840773730e0134fe1af11d399cb7a0.tar.gz linux-3.10-273a4b8a58840773730e0134fe1af11d399cb7a0.tar.bz2 linux-3.10-273a4b8a58840773730e0134fe1af11d399cb7a0.zip |
serial: max310x: Setup missing "can_sleep" field for GPIO
Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty')
-rw-r--r-- | drivers/tty/serial/max310x.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/tty/serial/max310x.c b/drivers/tty/serial/max310x.c index 3bb809d083a..a801f6872ca 100644 --- a/drivers/tty/serial/max310x.c +++ b/drivers/tty/serial/max310x.c @@ -1178,6 +1178,7 @@ static int max310x_probe(struct spi_device *spi) s->gpio.set = max310x_gpio_set; s->gpio.base = pdata->gpio_base; s->gpio.ngpio = s->nr_gpio; + s->gpio.can_sleep = 1; if (gpiochip_add(&s->gpio)) { /* Indicate that we should not call gpiochip_remove */ s->gpio.base = 0; |