[PATCH] gpio: rcar: fix gpio_rcar_of_table

Arnd Bergmann arnd at arndb.de
Wed Jun 19 11:50:43 EDT 2013


The device table needs to be terminated with an empty element.

Signed-off-by: Arnd Bergmann <arnd at arndb.de>
Cc: Laurent Pinchart <laurent.pinchart+renesas at ideasonboard.com>
Cc: Simon Horman <horms+renesas at verge.net.au>
---
I've just added this patch on top of the arm-soc next/drivers branch
that introduced the build warning.

diff --git a/drivers/gpio/gpio-rcar.c b/drivers/gpio/gpio-rcar.c
index 5a693dd..f332753 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);



More information about the linux-arm-kernel mailing list