pinctrl: cherryview: Add terminate entry for dmi_system_id tables

Make sure dmi_system_id tables are NULL terminated.

Fixes: 7036502783 ("pinctrl: cherryview: Add a quirk to make Acer
Chromebook keyboard work again")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
Wei Yongjun 2017-04-25 06:22:05 +00:00 committed by Linus Walleij
parent 08332893e3
commit a9de080bbc
1 changed files with 2 additions and 1 deletions

View File

@ -1547,7 +1547,8 @@ static const struct dmi_system_id chv_no_valid_mask[] = {
DMI_MATCH(DMI_PRODUCT_NAME, "Edgar"),
DMI_MATCH(DMI_BIOS_DATE, "05/21/2016"),
},
}
},
{}
};
static int chv_gpio_probe(struct chv_pinctrl *pctrl, int irq)