Browse Source

[ALSA] sound core: Use SEEK_{SET,CUR,END} instead of hardcoded values

sound core: 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>
Josef 'Jeff' Sipek 18 years ago
parent
commit
e6f8f108a1
1 changed files with 3 additions and 3 deletions
  1. 3 3
      sound/core/info.c

+ 3 - 3
sound/core/info.c

@@ -175,15 +175,15 @@ static loff_t snd_info_entry_llseek(struct file *file, loff_t offset, int orig)
 	switch (entry->content) {
 	switch (entry->content) {
 	case SNDRV_INFO_CONTENT_TEXT:
 	case SNDRV_INFO_CONTENT_TEXT:
 		switch (orig) {
 		switch (orig) {
-		case 0:	/* SEEK_SET */
+		case SEEK_SET:
 			file->f_pos = offset;
 			file->f_pos = offset;
 			ret = file->f_pos;
 			ret = file->f_pos;
 			goto out;
 			goto out;
-		case 1:	/* SEEK_CUR */
+		case SEEK_CUR:
 			file->f_pos += offset;
 			file->f_pos += offset;
 			ret = file->f_pos;
 			ret = file->f_pos;
 			goto out;
 			goto out;
-		case 2:	/* SEEK_END */
+		case SEEK_END:
 		default:
 		default:
 			ret = -EINVAL;
 			ret = -EINVAL;
 			goto out;
 			goto out;