diff options
author | Arnd Bergmann <arnd@arndb.de> | 2013-04-10 20:05:03 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2013-04-11 12:51:30 -0400 |
commit | 2af1955848dffad480120a494fc39ae99e7580ba (patch) | |
tree | bc6eb52d56c95312cd5100b01d77ba541c973c95 /sound/soc/samsung/i2s.c | |
parent | cb00e3a16dc60618c1ce56882e8bde1ad55069d9 (diff) |
ASoC: samsung: fix module_device_table
The second argument to the module_device_table macro must be the
name of the device id array. In the samsung i2s driver, there
was a small typo, resulting in a build error when building it
as a loadable module.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/samsung/i2s.c')
-rw-r--r-- | sound/soc/samsung/i2s.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/samsung/i2s.c b/sound/soc/samsung/i2s.c index 6bbeb0bf1a73..a487635412eb 100644 --- a/sound/soc/samsung/i2s.c +++ b/sound/soc/samsung/i2s.c | |||
@@ -1298,7 +1298,7 @@ static struct platform_device_id samsung_i2s_driver_ids[] = { | |||
1298 | }, | 1298 | }, |
1299 | {}, | 1299 | {}, |
1300 | }; | 1300 | }; |
1301 | MODULE_DEVICE_TABLE(platform, samsung-i2s-driver-ids); | 1301 | MODULE_DEVICE_TABLE(platform, samsung_i2s_driver_ids); |
1302 | 1302 | ||
1303 | #ifdef CONFIG_OF | 1303 | #ifdef CONFIG_OF |
1304 | static struct samsung_i2s_dai_data samsung_i2s_dai_data_array[] = { | 1304 | static struct samsung_i2s_dai_data samsung_i2s_dai_data_array[] = { |