diff options
author | Arnd Bergmann <arnd@arndb.de> | 2014-05-26 18:07:05 +0200 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2014-05-26 21:27:09 +0200 |
commit | 1b7f0c7b931864642e825a6fd01cde5881b064cc (patch) | |
tree | 46780fbda949337e2f11cd171f81e167868a3714 /drivers | |
parent | 7a1002e5ba6ebf17f8040f5176502527df8c38e8 (diff) | |
download | op-kernel-dev-1b7f0c7b931864642e825a6fd01cde5881b064cc.zip op-kernel-dev-1b7f0c7b931864642e825a6fd01cde5881b064cc.tar.gz |
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')
-rw-r--r-- | drivers/soc/qcom/qcom_gsbi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/soc/qcom/qcom_gsbi.c b/drivers/soc/qcom/qcom_gsbi.c index 061dd06..447458e 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); |