From: Randy Dunlap Date: Thu, 29 Mar 2012 01:26:13 +0000 (-0700) Subject: sound: fix oss/msnd_pinnacle module param type X-Git-Tag: v3.4-rc3~5^2~17 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ec99aaf47963eaa8615b8508c634be4a178f1c88;p=platform%2Fkernel%2Flinux-stable.git sound: fix oss/msnd_pinnacle module param type Fix module parameter data type to eliminate build warning. sound/oss/msnd_pinnacle.c:1727:1: warning: return from incompatible pointer type Signed-off-by: Randy Dunlap Signed-off-by: Takashi Iwai --- diff --git a/sound/oss/msnd_pinnacle.c b/sound/oss/msnd_pinnacle.c index eba7345..2c79d60 100644 --- a/sound/oss/msnd_pinnacle.c +++ b/sound/oss/msnd_pinnacle.c @@ -1631,7 +1631,7 @@ static int ide_irq __initdata = 0; static int joystick_io __initdata = 0; /* If we have the digital daugherboard... */ -static int digital __initdata = 0; +static bool digital __initdata = false; #endif static int fifosize __initdata = DEFFIFOSIZE;