From: Takashi Iwai <tiwai@suse.de>
To: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Cc: Jaroslav Kysela <perex@perex.cz>,
linux-usb@vger.kernel.org, linux-sound@vger.kernel.org,
alsa-devel@alsa-project.org
Subject: Re: Cannot load snd-usb-audio on 3.12-rc2
Date: Thu, 26 Sep 2013 08:36:29 +0000 [thread overview]
Message-ID: <s5hfvssdlo2.wl%tiwai@suse.de> (raw)
In-Reply-To: <20130923234107.GA4876@xanatos>
At Mon, 23 Sep 2013 16:41:07 -0700,
Sarah Sharp wrote:
>
> The snd-usb-audio driver no longer loads properly on 3.12-rc2 when I
> plug in my USB headset. It worked fine on 3.11-rc4 (not sure about
> vanilla 3.11).
>
> Trying to manually load the driver fails:
>
> sarah@xanatos:~$ sudo modprobe snd-usb-audio
> FATAL: Error inserting snd_usb_audio
> (/lib/modules/3.12.0-rc2/kernel/sound/usb/snd-usb-audio.ko): Invalid argument
>
> dmesg shows:
>
> [ 44.231668] snd_usb_audio: `-2' invalid for parameter `index'
There is no corresponding code change in the USB audio driver side, so
I guess it must be in the module parameter parser that got broken.
Does the patch below fix?
thanks,
Takashi
---
diff --git a/kernel/params.c b/kernel/params.c
index 81c4e78..c00d5b5 100644
--- a/kernel/params.c
+++ b/kernel/params.c
@@ -254,11 +254,11 @@ int parse_args(const char *doing,
STANDARD_PARAM_DEF(byte, unsigned char, "%hhu", unsigned long, kstrtoul);
-STANDARD_PARAM_DEF(short, short, "%hi", long, kstrtoul);
+STANDARD_PARAM_DEF(short, short, "%hi", long, kstrtol);
STANDARD_PARAM_DEF(ushort, unsigned short, "%hu", unsigned long, kstrtoul);
-STANDARD_PARAM_DEF(int, int, "%i", long, kstrtoul);
+STANDARD_PARAM_DEF(int, int, "%i", long, kstrtol);
STANDARD_PARAM_DEF(uint, unsigned int, "%u", unsigned long, kstrtoul);
-STANDARD_PARAM_DEF(long, long, "%li", long, kstrtoul);
+STANDARD_PARAM_DEF(long, long, "%li", long, kstrtol);
STANDARD_PARAM_DEF(ulong, unsigned long, "%lu", unsigned long, kstrtoul);
int param_set_charp(const char *val, const struct kernel_param *kp)
next prev parent reply other threads:[~2013-09-26 8:36 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20130923234107.GA4876@xanatos>
2013-09-24 15:52 ` Cannot load snd-usb-audio on 3.12-rc2 Daniel Mack
2013-09-26 8:10 ` [alsa-devel] " David Henningsson
2013-09-26 8:36 ` Takashi Iwai [this message]
[not found] ` <s5hfvssdlo2.wl%tiwai-l3A5Bk7waGM@public.gmane.org>
2013-10-09 20:01 ` Sarah Sharp
2013-10-10 7:44 ` Takashi Iwai
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=s5hfvssdlo2.wl%tiwai@suse.de \
--to=tiwai@suse.de \
--cc=alsa-devel@alsa-project.org \
--cc=linux-sound@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=perex@perex.cz \
--cc=sarah.a.sharp@linux.intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox