i2c: rk3x: add NULL entry to the end of_device_id array
authorDan Carpenter <dan.carpenter@oracle.com>
Thu, 12 Jun 2014 21:56:09 +0000 (23:56 +0200)
committerWolfram Sang <wsa@the-dreams.de>
Thu, 12 Jun 2014 21:56:37 +0000 (23:56 +0200)
drivers/i2c/busses/i2c-rk3x.c:610:69-70: rk3x_i2c_match is not NULL terminated at line 610

Make sure of_device_id tables are NULL terminated
Generated by: /kbuild/src/linux/scripts/coccinelle/misc/of_table.cocci

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
drivers/i2c/busses/i2c-rk3x.c

index 9e3084c5e343bca29e72d8de686ccae11fb74f67..a9791509966a07e94e028b07396e1d4be95b4b2b 100644 (file)
@@ -608,6 +608,7 @@ static const struct of_device_id rk3x_i2c_match[] = {
        { .compatible = "rockchip,rk3066-i2c", .data = (void *)&soc_data[0] },
        { .compatible = "rockchip,rk3188-i2c", .data = (void *)&soc_data[1] },
        { .compatible = "rockchip,rk3288-i2c", .data = (void *)&soc_data[2] },
+       {},
 };
 
 static int rk3x_i2c_probe(struct platform_device *pdev)
This page took 0.025737 seconds and 5 git commands to generate.