aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorJosef 'Jeff' Sipek <jeffpc@josefsipek.net>2006-09-21 05:33:42 -0400
committerJaroslav Kysela <perex@suse.cz>2006-09-23 04:47:56 -0400
commit7ffffecc7c4df08ad89723ca32d936ff09b5b3ff (patch)
tree430d690b22502e5731b2d4035e6c5eb1fdd4345f /sound
parentd158da81ee9a1fa70d980f58b0f143fa873ca9ed (diff)
[ALSA] mixart: Use SEEK_{SET,CUR,END} instead of hardcoded values
mixart: Use SEEK_{SET,CUR,END} instead of hardcoded values Signed-off-by: Josef 'Jeff' Sipek <jeffpc@josefsipek.net> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/mixart/mixart.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sound/pci/mixart/mixart.c b/sound/pci/mixart/mixart.c
index cc43ecd67906..216aee5f93e7 100644
--- a/sound/pci/mixart/mixart.c
+++ b/sound/pci/mixart/mixart.c
@@ -1109,13 +1109,13 @@ static long long snd_mixart_BA0_llseek(struct snd_info_entry *entry,
1109 offset = offset & ~3; /* 4 bytes aligned */ 1109 offset = offset & ~3; /* 4 bytes aligned */
1110 1110
1111 switch(orig) { 1111 switch(orig) {
1112 case 0: /* SEEK_SET */ 1112 case SEEK_SET:
1113 file->f_pos = offset; 1113 file->f_pos = offset;
1114 break; 1114 break;
1115 case 1: /* SEEK_CUR */ 1115 case SEEK_CUR:
1116 file->f_pos += offset; 1116 file->f_pos += offset;
1117 break; 1117 break;
1118 case 2: /* SEEK_END, offset is negative */ 1118 case SEEK_END: /* offset is negative */
1119 file->f_pos = MIXART_BA0_SIZE + offset; 1119 file->f_pos = MIXART_BA0_SIZE + offset;
1120 break; 1120 break;
1121 default: 1121 default:
@@ -1135,13 +1135,13 @@ static long long snd_mixart_BA1_llseek(struct snd_info_entry *entry,
1135 offset = offset & ~3; /* 4 bytes aligned */ 1135 offset = offset & ~3; /* 4 bytes aligned */
1136 1136
1137 switch(orig) { 1137 switch(orig) {
1138 case 0: /* SEEK_SET */ 1138 case SEEK_SET:
1139 file->f_pos = offset; 1139 file->f_pos = offset;
1140 break; 1140 break;
1141 case 1: /* SEEK_CUR */ 1141 case SEEK_CUR:
1142 file->f_pos += offset; 1142 file->f_pos += offset;
1143 break; 1143 break;
1144 case 2: /* SEEK_END, offset is negative */ 1144 case SEEK_END: /* offset is negative */
1145 file->f_pos = MIXART_BA1_SIZE + offset; 1145 file->f_pos = MIXART_BA1_SIZE + offset;
1146 break; 1146 break;
1147 default: 1147 default: