[2.6 patch] fix sound/isa/gus/interwave.c compile with PNP=n

From: Adrian Bunk
Date: Sun Feb 06 2005 - 13:48:44 EST


Emmanuel Colbus sent this patch one month ago with the following
description:

There is a trivial bug in the file sound/isa/gus/interwave.c .
The variable isapnp is defined only if CONFIG_PNP is enabled, but it is
always used few lines after.

Signed-off-by: Adrian Bunk <bunk@xxxxxxxxx>

--- a/sound/isa/gus/interwave.c Fri Dec 24 22:34:58 2004
+++ b/sound/isa/gus/interwave.c Wed Jan 5 14:06:53 2005
@@ -79,8 +79,10 @@
MODULE_PARM_DESC(id, "ID string for InterWave soundcard.");
module_param_array(enable, bool, NULL, 0444);
MODULE_PARM_DESC(enable, "Enable InterWave soundcard.");
+#ifdef CONFIG_PNP
module_param_array(isapnp, bool, NULL, 0444);
MODULE_PARM_DESC(isapnp, "ISA PnP detection for specified soundcard.");
+#endif
module_param_array(port, long, NULL, 0444);
MODULE_PARM_DESC(port, "Port # for InterWave driver.");
#ifdef SNDRV_STB
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/