From: Arnd Bergmann Date: Mon, 17 Jun 2013 07:55:50 +0000 (+0200) Subject: gpio: rcar: fix gpio_rcar_of_table X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=30d2266c685ce9f560e5023e4add58f890554a46;p=deliverable%2Flinux.git gpio: rcar: fix gpio_rcar_of_table The device table needs to be terminated with an empty element. Signed-off-by: Arnd Bergmann Cc: Laurent Pinchart Cc: Simon Horman --- 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);