* [patch] Fix macro abuse in pcmcia/cistpl.c
@ 2005-08-22 18:42 Pavel Machek
2005-08-28 17:33 ` Russell King
0 siblings, 1 reply; 2+ messages in thread
From: Pavel Machek @ 2005-08-22 18:42 UTC (permalink / raw)
To: Russell King, kernel list
Hi!
Please apply,
Pavel
Fix macro abuse in pcmcia.
Signed-off-by: Pavel Machek <pavel@suse.cz>
---
commit 486ece208a1ae323fce89fc3b4b5b4b522a1b4b8
tree 1c9aa703b585a65acbd038c053dbf42c9603e281
parent b4b834e36f0180e1036a7a8ba8505b6d4165596e
author <pavel@amd.(none)> Mon, 22 Aug 2005 20:42:10 +0200
committer <pavel@amd.(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
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [patch] Fix macro abuse in pcmcia/cistpl.c
2005-08-22 18:42 [patch] Fix macro abuse in pcmcia/cistpl.c Pavel Machek
@ 2005-08-28 17:33 ` Russell King
0 siblings, 0 replies; 2+ messages in thread
From: Russell King @ 2005-08-28 17:33 UTC (permalink / raw)
To: Pavel Machek; +Cc: kernel list
On Mon, Aug 22, 2005 at 08:42:57PM +0200, Pavel Machek wrote:
> Please apply,
Unfortunately not - I don't look after PCMCIA anymore. Please send
this to Dominik Brodowski.
Thanks.
--
Russell King
Linux kernel 2.6 ARM Linux - http://www.arm.linux.org.uk/
maintainer of: 2.6 Serial core
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2005-08-28 17:33 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-08-22 18:42 [patch] Fix macro abuse in pcmcia/cistpl.c Pavel Machek
2005-08-28 17:33 ` Russell King
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox