diff options
| author | Krzysztof Helt <krzysztof.h1@wp.pl> | 2006-08-17 10:59:28 -0400 |
|---|---|---|
| committer | Jaroslav Kysela <perex@suse.cz> | 2006-09-23 04:41:28 -0400 |
| commit | 16727d94adf9a1376775fd34d982778c7f3506df (patch) | |
| tree | f1d876d1c81326884f25974054a89755c42f4a88 /sound/sparc | |
| parent | 5fc3a2b250716b34ca7c0128475bbedf795f1ac2 (diff) | |
[ALSA] sparc dbri: removal of redudant volatile keywords
It removes redudant volatile keywords.
Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound/sparc')
| -rw-r--r-- | sound/sparc/dbri.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/sparc/dbri.c b/sound/sparc/dbri.c index 66b4d45cf8bf..405c603717b6 100644 --- a/sound/sparc/dbri.c +++ b/sound/sparc/dbri.c | |||
| @@ -252,8 +252,8 @@ static struct { | |||
| 252 | /* One transmit/receive descriptor */ | 252 | /* One transmit/receive descriptor */ |
| 253 | struct dbri_mem { | 253 | struct dbri_mem { |
| 254 | volatile __u32 word1; | 254 | volatile __u32 word1; |
| 255 | volatile __u32 ba; /* Transmit/Receive Buffer Address */ | 255 | __u32 ba; /* Transmit/Receive Buffer Address */ |
| 256 | volatile __u32 nda; /* Next Descriptor Address */ | 256 | __u32 nda; /* Next Descriptor Address */ |
| 257 | volatile __u32 word4; | 257 | volatile __u32 word4; |
| 258 | }; | 258 | }; |
| 259 | 259 | ||
| @@ -308,7 +308,7 @@ struct snd_dbri { | |||
| 308 | struct sbus_dev *sdev; /* SBUS device info */ | 308 | struct sbus_dev *sdev; /* SBUS device info */ |
| 309 | spinlock_t lock; | 309 | spinlock_t lock; |
| 310 | 310 | ||
| 311 | volatile struct dbri_dma *dma; /* Pointer to our DMA block */ | 311 | struct dbri_dma *dma; /* Pointer to our DMA block */ |
| 312 | u32 dma_dvma; /* DBRI visible DMA address */ | 312 | u32 dma_dvma; /* DBRI visible DMA address */ |
| 313 | 313 | ||
| 314 | void __iomem *regs; /* dbri HW regs */ | 314 | void __iomem *regs; /* dbri HW regs */ |
