Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e6f8f108 authored by Josef 'Jeff' Sipek's avatar Josef 'Jeff' Sipek Committed by Jaroslav Kysela
Browse files

[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: default avatarJosef 'Jeff' Sipek <jeffpc@josefsipek.net>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
Signed-off-by: default avatarJaroslav Kysela <perex@suse.cz>
parent eb06ed8f
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -175,15 +175,15 @@ static loff_t snd_info_entry_llseek(struct file *file, loff_t offset, int orig)
	switch (entry->content) {
	case SNDRV_INFO_CONTENT_TEXT:
		switch (orig) {
		case 0:	/* SEEK_SET */
		case SEEK_SET:
			file->f_pos = offset;
			ret = file->f_pos;
			goto out;
		case 1:	/* SEEK_CUR */
		case SEEK_CUR:
			file->f_pos += offset;
			ret = file->f_pos;
			goto out;
		case 2:	/* SEEK_END */
		case SEEK_END:
		default:
			ret = -EINVAL;
			goto out;