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

Commit 670ff6ab authored by Takashi Iwai's avatar Takashi Iwai
Browse files

ALSA: opl4 - Fix a wrong argument in proc write callback



The commit 24e4a121
    ALSA: info - Use standard types for info callbacks
introduced a wrong type to snd_opl4_mem_proc_write() for pos argument.
Fixed now.

Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent c56a3b18
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -73,7 +73,7 @@ static ssize_t snd_opl4_mem_proc_write(struct snd_info_entry *entry,
				       void *file_private_data,
				       struct file *file,
				       const char __user *_buf,
				       size_t count, size_t pos)
				       size_t count, loff_t pos)
{
	struct snd_opl4 *opl4 = entry->private_data;
	char *buf;