diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2008-10-08 08:02:20 -0400 |
---|---|---|
committer | Jaroslav Kysela <perex@perex.cz> | 2008-10-10 07:41:58 -0400 |
commit | fb2aa074d4eac4957f5717d261bc336f4a5f31c4 (patch) | |
tree | 68b8d28e460be27c723c57dedbdf6fc5be414066 /sound | |
parent | 32fe61426373d85e797bf4f4dcbe4510487c3e00 (diff) |
ALSA: ASoC: Check for machine type in GTA01 machine driver
Since there are now multiple OpenMoko platforms it is more important to
check that the machine driver is running on the correct system. This
was orgininally generated as part of the initial GTA02 machine port.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/s3c24xx/neo1973_wm8753.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sound/soc/s3c24xx/neo1973_wm8753.c b/sound/soc/s3c24xx/neo1973_wm8753.c index 47ddcdedc3a4..73a50e93a9a2 100644 --- a/sound/soc/s3c24xx/neo1973_wm8753.c +++ b/sound/soc/s3c24xx/neo1973_wm8753.c | |||
@@ -24,6 +24,7 @@ | |||
24 | #include <sound/soc-dapm.h> | 24 | #include <sound/soc-dapm.h> |
25 | #include <sound/tlv.h> | 25 | #include <sound/tlv.h> |
26 | 26 | ||
27 | #include <asm/mach-types.h> | ||
27 | #include <asm/hardware/scoop.h> | 28 | #include <asm/hardware/scoop.h> |
28 | #include <mach/regs-clock.h> | 29 | #include <mach/regs-clock.h> |
29 | #include <mach/regs-gpio.h> | 30 | #include <mach/regs-gpio.h> |
@@ -716,6 +717,12 @@ static int __init neo1973_init(void) | |||
716 | 717 | ||
717 | DBG("Entered %s\n", __func__); | 718 | DBG("Entered %s\n", __func__); |
718 | 719 | ||
720 | if (!machine_is_neo1973_gta01()) { | ||
721 | printk(KERN_INFO | ||
722 | "Only GTA01 hardware supported by ASoC driver\n"); | ||
723 | return -ENODEV; | ||
724 | } | ||
725 | |||
719 | neo1973_snd_device = platform_device_alloc("soc-audio", -1); | 726 | neo1973_snd_device = platform_device_alloc("soc-audio", -1); |
720 | if (!neo1973_snd_device) | 727 | if (!neo1973_snd_device) |
721 | return -ENOMEM; | 728 | return -ENOMEM; |