diff options
author | zhong jiang <zhongjiang@huawei.com> | 2018-08-04 13:49:27 +0300 |
---|---|---|
committer | Sean Paul <seanpaul@chromium.org> | 2018-09-10 23:01:22 +0300 |
commit | 7eb33224572636248d5b6cfa1a6b2472207be5c4 (patch) | |
tree | ad4d033915b5940e1ea9f788c0d35613d3980780 /drivers/gpu/drm/pl111 | |
parent | 658d8cbd07dae22ccecf49399e18c609c4e85c53 (diff) | |
download | linux-7eb33224572636248d5b6cfa1a6b2472207be5c4.tar.xz |
drm/pl111: Make sure of_device_id tables are NULL terminated
We prefer to of_device_id tables are NULL terminated. So make
vexpress_muxfpga_match is NULL terminated.
Signed-off-by: zhong jiang <zhongjiang@huawei.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Link: https://patchwork.freedesktop.org/patch/msgid/1533379767-15629-1-git-send-email-zhongjiang@huawei.com
Signed-off-by: Sean Paul <seanpaul@chromium.org>
Diffstat (limited to 'drivers/gpu/drm/pl111')
-rw-r--r-- | drivers/gpu/drm/pl111/pl111_vexpress.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/pl111/pl111_vexpress.c b/drivers/gpu/drm/pl111/pl111_vexpress.c index a534b225e31b..5fa0441bb6df 100644 --- a/drivers/gpu/drm/pl111/pl111_vexpress.c +++ b/drivers/gpu/drm/pl111/pl111_vexpress.c @@ -111,7 +111,8 @@ static int vexpress_muxfpga_probe(struct platform_device *pdev) } static const struct of_device_id vexpress_muxfpga_match[] = { - { .compatible = "arm,vexpress-muxfpga", } + { .compatible = "arm,vexpress-muxfpga", }, + {} }; static struct platform_driver vexpress_muxfpga_driver = { |