Skip to content

Commit

Permalink
[PATCH] pcmcia: avoid macro usage in cistpl
Browse files Browse the repository at this point in the history
Fix macro abuse in pcmcia.

Signed-off-by: Pavel Machek <pavel@suse.cz>
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
  • Loading branch information
pavelmachek authored and Dominik Brodowski committed Jan 5, 2006
1 parent db9edfd commit 37f7795
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/pcmcia/cistpl.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
module_param(cis_width, int, 0444);

void release_cis_mem(struct pcmcia_socket *s)
{
Expand Down

0 comments on commit 37f7795

Please sign in to comment.