summaryrefslogtreecommitdiff
path: root/drivers/soc
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2014-05-26 18:07:05 +0200
committerArnd Bergmann <arnd@arndb.de>2014-05-26 21:27:09 +0200
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)
static const struct of_device_id gsbi_dt_match[] = {
{ .compatible = "qcom,gsbi-v1.0.0", },
+ { },
};
MODULE_DEVICE_TABLE(of, gsbi_dt_match);