projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7a1002e
)
soc: qcom: fix of_device_id table
author
Arnd Bergmann
<arnd@arndb.de>
Mon, 26 May 2014 16:07:05 +0000
(18:07 +0200)
committer
Arnd Bergmann
<arnd@arndb.de>
Mon, 26 May 2014 19:27:09 +0000
(21:27 +0200)
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>
drivers/soc/qcom/qcom_gsbi.c
patch
|
blob
|
history
diff --git
a/drivers/soc/qcom/qcom_gsbi.c
b/drivers/soc/qcom/qcom_gsbi.c
index
061dd06
..
447458e
100644
(file)
--- 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);