aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/soc
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2014-05-26 12:07:05 -0400
committerArnd Bergmann <arnd@arndb.de>2014-05-26 15:27:09 -0400
commit1b7f0c7b931864642e825a6fd01cde5881b064cc (patch)
tree46780fbda949337e2f11cd171f81e167868a3714 /drivers/soc
parent7a1002e5ba6ebf17f8040f5176502527df8c38e8 (diff)
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 <arnd@arndb.de>
Diffstat (limited to 'drivers/soc')
-rw-r--r--drivers/soc/qcom/qcom_gsbi.c1
1 files changed, 1 insertions, 0 deletions
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)
64 64
65static const struct of_device_id gsbi_dt_match[] = { 65static const struct of_device_id gsbi_dt_match[] = {
66 { .compatible = "qcom,gsbi-v1.0.0", }, 66 { .compatible = "qcom,gsbi-v1.0.0", },
67 { },
67}; 68};
68 69
69MODULE_DEVICE_TABLE(of, gsbi_dt_match); 70MODULE_DEVICE_TABLE(of, gsbi_dt_match);