From: Dirk Behme Date: Sat, 19 May 2007 14:51:52 +0000 (+0200) Subject: ARM: OMAP: Convert omap-alsa-sx1.c to new struct format X-Git-Tag: v2.6.22-omap1~134 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=2ce53a2061d29405b35e30fafcc70c63fdbf98b7;p=linux-2.6-omap-h63xx.git ARM: OMAP: Convert omap-alsa-sx1.c to new struct format Convert omap-alsa-sx1.c to new struct format to make this file compile again. Signed-off-by: Dirk Behme Signed-off-by: Tony Lindgren --- diff --git a/sound/arm/omap/omap-alsa-sx1.c b/sound/arm/omap/omap-alsa-sx1.c index eadae684f02..c4691cda55c 100644 --- a/sound/arm/omap/omap-alsa-sx1.c +++ b/sound/arm/omap/omap-alsa-sx1.c @@ -82,13 +82,13 @@ static unsigned int rates[] = { 32000, 44100, 48000, }; -static snd_pcm_hw_constraint_list_t egold_hw_constraints_rates = { +static struct snd_pcm_hw_constraint_list egold_hw_constraints_rates = { .count = ARRAY_SIZE(rates), .list = rates, .mask = 0, }; -static snd_pcm_hardware_t egold_snd_omap_alsa_playback = { +static struct snd_pcm_hardware egold_snd_omap_alsa_playback = { .info = (SNDRV_PCM_INFO_INTERLEAVED | SNDRV_PCM_INFO_BLOCK_TRANSFER | SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_MMAP_VALID), .formats = (SNDRV_PCM_FMTBIT_S16_LE), @@ -109,7 +109,7 @@ static snd_pcm_hardware_t egold_snd_omap_alsa_playback = { .fifo_size = 0, }; -static snd_pcm_hardware_t egold_snd_omap_alsa_capture = { +static struct snd_pcm_hardware egold_snd_omap_alsa_capture = { .info = (SNDRV_PCM_INFO_INTERLEAVED | SNDRV_PCM_INFO_BLOCK_TRANSFER | SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_MMAP_VALID), .formats = (SNDRV_PCM_FMTBIT_S16_LE),