ASoC: samsung: fix module_device_table
authorArnd Bergmann <arnd@arndb.de>
Thu, 11 Apr 2013 00:05:03 +0000 (02:05 +0200)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Thu, 11 Apr 2013 16:51:30 +0000 (17:51 +0100)
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>
sound/soc/samsung/i2s.c

index 6bbeb0bf1a73a58fa9e3a573e00655dc3e8763d2..a487635412eb447ac694c6cc8ae9c20e00d65cd7 100644 (file)
@@ -1298,7 +1298,7 @@ static struct platform_device_id samsung_i2s_driver_ids[] = {
        },
        {},
 };
-MODULE_DEVICE_TABLE(platform, samsung-i2s-driver-ids);
+MODULE_DEVICE_TABLE(platform, samsung_i2s_driver_ids);
 
 #ifdef CONFIG_OF
 static struct samsung_i2s_dai_data samsung_i2s_dai_data_array[] = {
This page took 0.025336 seconds and 5 git commands to generate.