dect
/
linux-2.6
Archived
13
0
Fork 0

ASoC: Samsung: Debug PCM platform device name

The PCM controller platform devices are registered by the
name 'samsung-pcm', so use the same in the CPU driver.

Signed-off-by: Jassi Brar <jassi.brar@samsung.com>
Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
This commit is contained in:
Jassi Brar 2010-09-10 16:41:17 +09:00 committed by Mark Brown
parent e66477d337
commit 5fbdedf072
1 changed files with 2 additions and 2 deletions

View File

@ -522,7 +522,7 @@ static struct platform_driver s3c_pcm_driver = {
.probe = s3c_pcm_dev_probe,
.remove = s3c_pcm_dev_remove,
.driver = {
.name = "samsung-pcm-audio",
.name = "samsung-pcm",
.owner = THIS_MODULE,
},
};
@ -543,4 +543,4 @@ module_exit(s3c_pcm_exit);
MODULE_AUTHOR("Jaswinder Singh, <jassi.brar@samsung.com>");
MODULE_DESCRIPTION("S3C PCM Controller Driver");
MODULE_LICENSE("GPL");
MODULE_ALIAS("platform:samsung-pcm-audio");
MODULE_ALIAS("platform:samsung-pcm");