Commit f055cb9a authored by Adam Kropelin's avatar Adam Kropelin Committed by Linus Torvalds

[PATCH] typo in OSS sparse __user annotations

Fix a missing initialization in the sparse __user annotation work for OSS.
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 7060577b
...@@ -362,7 +362,7 @@ static int getequalizer(int __user *arg, ...@@ -362,7 +362,7 @@ static int getequalizer(int __user *arg,
static int aci_mixer_ioctl (int dev, unsigned int cmd, void __user * arg) static int aci_mixer_ioctl (int dev, unsigned int cmd, void __user * arg)
{ {
int vol, buf; int vol, buf;
int __user *p; int __user *p = arg;
switch (cmd) { switch (cmd) {
case SOUND_MIXER_WRITE_VOLUME: case SOUND_MIXER_WRITE_VOLUME:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment