diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2014-06-12 23:56:09 +0200 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2014-06-12 23:56:37 +0200 |
commit | c51bd6acf59f24f2ec4334689329f1741f071621 (patch) | |
tree | 3698591d44982708a462942b5cb8f50cbff63083 /drivers/i2c/busses | |
parent | c155ba884f68b5447529bc75bcb54e68130fd774 (diff) | |
download | linux-c51bd6acf59f24f2ec4334689329f1741f071621.tar.bz2 |
i2c: rk3x: add NULL entry to the end of_device_id array
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>
Diffstat (limited to 'drivers/i2c/busses')
-rw-r--r-- | drivers/i2c/busses/i2c-rk3x.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/i2c/busses/i2c-rk3x.c b/drivers/i2c/busses/i2c-rk3x.c index 9e3084c5e343..a9791509966a 100644 --- a/drivers/i2c/busses/i2c-rk3x.c +++ b/drivers/i2c/busses/i2c-rk3x.c @@ -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) |