From 2ce53a2061d29405b35e30fafcc70c63fdbf98b7 Mon Sep 17 00:00:00 2001 From: Dirk Behme Date: Sat, 19 May 2007 16:51:52 +0200 Subject: [PATCH] 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 --- sound/arm/omap/omap-alsa-sx1.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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), -- 2.41.1