diff options
author | Randy Dunlap <rdunlap@xenotime.net> | 2012-03-28 21:26:13 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2012-03-29 11:56:43 -0400 |
commit | ec99aaf47963eaa8615b8508c634be4a178f1c88 (patch) | |
tree | a325fdce58cfb05b75991e2546e98fb0a2d17329 /sound/oss | |
parent | d1045b6a9a73dc6bead25fe200b5b4e7feed7357 (diff) |
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 <rdunlap@xenotime.net>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/oss')
-rw-r--r-- | sound/oss/msnd_pinnacle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/oss/msnd_pinnacle.c b/sound/oss/msnd_pinnacle.c index eba734560f6f..2c79d60a725f 100644 --- a/sound/oss/msnd_pinnacle.c +++ b/sound/oss/msnd_pinnacle.c | |||
@@ -1631,7 +1631,7 @@ static int ide_irq __initdata = 0; | |||
1631 | static int joystick_io __initdata = 0; | 1631 | static int joystick_io __initdata = 0; |
1632 | 1632 | ||
1633 | /* If we have the digital daugherboard... */ | 1633 | /* If we have the digital daugherboard... */ |
1634 | static int digital __initdata = 0; | 1634 | static bool digital __initdata = false; |
1635 | #endif | 1635 | #endif |
1636 | 1636 | ||
1637 | static int fifosize __initdata = DEFFIFOSIZE; | 1637 | static int fifosize __initdata = DEFFIFOSIZE; |