* [PATCH] Fix for drivers/pnp/interface.c
@ 2003-02-22 19:18 Art Haas
0 siblings, 0 replies; only message in thread
From: Art Haas @ 2003-02-22 19:18 UTC (permalink / raw)
To: linux-kernel; +Cc: Jaroslav Kysela, Adam Belay
Hi.
A BK pull from this morning brings in a number of PNP changes, and there
is a problem with interface.c. The patch below moves the variable
declarations to the beginning of the block, and the code now compiles
without problems. I'm using GCC-2.95.4 from Debian, BTW.
Art Haas
===== drivers/pnp/interface.c 1.10 vs edited =====
--- 1.10/drivers/pnp/interface.c Wed Feb 19 11:54:46 2003
+++ edited/drivers/pnp/interface.c Sat Feb 22 11:47:10 2003
@@ -432,11 +432,11 @@
goto done;
}
if (!strnicmp(buf,"set",3)) {
+ struct pnp_resource_table res;
+ int nport = 0, nmem = 0, nirq = 0, ndma = 0;
if (dev->active)
goto done;
buf += 3;
- struct pnp_resource_table res;
- int nport = 0, nmem = 0, nirq = 0, ndma = 0;
pnp_init_resource_table(&res);
while (1) {
while (isspace(*buf))
--
They that can give up essential liberty to obtain a little temporary safety
deserve neither liberty nor safety.
-- Benjamin Franklin, Historical Review of Pennsylvania, 1759
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2003-02-22 19:08 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-02-22 19:18 [PATCH] Fix for drivers/pnp/interface.c Art Haas
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox