projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d695e22
)
i2c: meson: Fix module autoload for OF platform driver
author
Luis de Bethencourt
<luis@debethencourt.com>
Tue, 20 Oct 2015 14:16:28 +0000
(15:16 +0100)
committer
Wolfram Sang
<wsa@the-dreams.de>
Tue, 20 Oct 2015 16:14:36 +0000
(18:14 +0200)
This platform driver has a OF device ID table but the OF module
alias information is not created so module autoloading won't work.
Signed-off-by: Luis de Bethencourt <luisbg@osg.samsung.com>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
drivers/i2c/busses/i2c-meson.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/i2c/busses/i2c-meson.c
b/drivers/i2c/busses/i2c-meson.c
index 5e176adca8e8a7b4326f2aa3d95c6188cb15ff16..71d3929adf54ed074e1600fcfd0b844f6e6574d6 100644
(file)
--- a/
drivers/i2c/busses/i2c-meson.c
+++ b/
drivers/i2c/busses/i2c-meson.c
@@
-475,6
+475,7
@@
static const struct of_device_id meson_i2c_match[] = {
{ .compatible = "amlogic,meson6-i2c" },
{ },
};
+MODULE_DEVICE_TABLE(of, meson_i2c_match);
static struct platform_driver meson_i2c_driver = {
.probe = meson_i2c_probe,