Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1402443 > unrolled thread

[PATCH] ASoC: nau8825: Export I2C module alias information

Started byJavier Martinez Canillas <javier@osg.samsung.com>
First post2016-05-17 18:10 +0200
Last post2016-05-17 18:10 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] ASoC: nau8825: Export I2C module alias information Javier Martinez Canillas <javier@osg.samsung.com> - 2016-05-17 18:10 +0200

#1402443 — [PATCH] ASoC: nau8825: Export I2C module alias information

FromJavier Martinez Canillas <javier@osg.samsung.com>
Date2016-05-17 18:10 +0200
Subject[PATCH] ASoC: nau8825: Export I2C module alias information
Message-ID<rzPJf-6K1-5@gated-at.bofh.it>
The I2C driver has an i2c_device_id array but that information isn't
exported to the module using the MODULE_DEVICE_TABLE() macro. So the
module autoloading won't work if the I2C device is registered using
OF or legacy board files due missing alias information in the module.

The issue was found using Kieran Bingham's coccinelle semantic patch:
https://lkml.org/lkml/2016/5/10/520

Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>

---

 sound/soc/codecs/nau8825.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sound/soc/codecs/nau8825.c b/sound/soc/codecs/nau8825.c
index 81fc97b07751..e988f89ef715 100644
--- a/sound/soc/codecs/nau8825.c
+++ b/sound/soc/codecs/nau8825.c
@@ -1493,6 +1493,7 @@ static const struct i2c_device_id nau8825_i2c_ids[] = {
 	{ "nau8825", 0 },
 	{ }
 };
+MODULE_DEVICE_TABLE(i2c, nau8825_i2c_ids);
 
 #ifdef CONFIG_OF
 static const struct of_device_id nau8825_of_ids[] = {
-- 
2.5.5

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web