diff options
author | Arnd Bergmann <arnd@arndb.de> | 2013-06-17 09:55:50 +0200 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2013-06-19 17:47:25 +0200 |
commit | 30d2266c685ce9f560e5023e4add58f890554a46 (patch) | |
tree | 52dc4e8c4e73d556d411da417e9126204c2563a1 /drivers/gpio | |
parent | 1247034ea6515d25a80220915820aa61891a78a1 (diff) | |
download | linux-30d2266c685ce9f560e5023e4add58f890554a46.tar.bz2 |
gpio: rcar: fix gpio_rcar_of_table
The device table needs to be terminated with an empty element.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Cc: Simon Horman <horms+renesas@verge.net.au>
Diffstat (limited to 'drivers/gpio')
-rw-r--r-- | drivers/gpio/gpio-rcar.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpio/gpio-rcar.c b/drivers/gpio/gpio-rcar.c index 5a693dd0ac7a..f3327533bfd5 100644 --- a/drivers/gpio/gpio-rcar.c +++ b/drivers/gpio/gpio-rcar.c @@ -437,6 +437,7 @@ static const struct of_device_id gpio_rcar_of_table[] = { { .compatible = "renesas,gpio-rcar", }, + { }, }; MODULE_DEVICE_TABLE(of, gpio_rcar_of_table); |