Hi! Please apply, Pavel
Fix macro abuse in pcmcia. Signed-off-by: Pavel Machek <[EMAIL PROTECTED]> --- commit 486ece208a1ae323fce89fc3b4b5b4b522a1b4b8 tree 1c9aa703b585a65acbd038c053dbf42c9603e281 parent b4b834e36f0180e1036a7a8ba8505b6d4165596e author <[EMAIL PROTECTED](none)> Mon, 22 Aug 2005 20:42:10 +0200 committer <[EMAIL PROTECTED](none)> Mon, 22 Aug 2005 20:42:10 +0200 drivers/pcmcia/cistpl.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/pcmcia/cistpl.c b/drivers/pcmcia/cistpl.c --- a/drivers/pcmcia/cistpl.c +++ b/drivers/pcmcia/cistpl.c @@ -60,9 +60,9 @@ static const u_int exponent[] = { /* Parameters that can be set with 'insmod' */ -#define INT_MODULE_PARM(n, v) static int n = v; module_param(n, int, 0444) - -INT_MODULE_PARM(cis_width, 0); /* 16-bit CIS? */ +/* 16-bit CIS? */ +static int cis_width = 0; +module_param(cis_width, int, 0444); void release_cis_mem(struct pcmcia_socket *s) { -- if you have sharp zaurus hardware you don't need... you know my address - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/