From: Arnd Bergmann Date: Mon, 26 May 2014 16:07:05 +0000 (+0200) Subject: soc: qcom: fix of_device_id table X-Git-Tag: v3.16-rc1~30^2~40^2~7 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=1b7f0c7b931864642e825a6fd01cde5881b064cc;p=linux.git soc: qcom: fix of_device_id table The match tables must be zero-terminated, and Kbuild now helpfully fails to link the kernel if that isn't the case. Signed-off-by: Arnd Bergmann --- diff --git a/drivers/soc/qcom/qcom_gsbi.c b/drivers/soc/qcom/qcom_gsbi.c index 061dd0632dbd..447458e696a9 100644 --- a/drivers/soc/qcom/qcom_gsbi.c +++ b/drivers/soc/qcom/qcom_gsbi.c @@ -64,6 +64,7 @@ static int gsbi_probe(struct platform_device *pdev) static const struct of_device_id gsbi_dt_match[] = { { .compatible = "qcom,gsbi-v1.0.0", }, + { }, }; MODULE_DEVICE_TABLE(of, gsbi_dt_match);