* PATCH: NCR53c406 missing release_region
@ 2001-05-16 9:48 Marcus Meissner
0 siblings, 0 replies; only message in thread
From: Marcus Meissner @ 2001-05-16 9:48 UTC (permalink / raw)
To: Alan Cox, linux-kernel
Hi,
There was a missing release_region in NCR53c406a.c, which fscked up
probing with 'modprobe NCR53c406' like one mode of our installer does.
(Tested by checking the contents of /proc/ioports before and after. After
modprobe it contained junk for the probed port range. It no longer does.)
Ciao, Marcus
Index: drivers/scsi/NCR53c406a.c
===================================================================
RCS file: /build/mm/work/repository/linux-mm/drivers/scsi/NCR53c406a.c,v
retrieving revision 1.6
diff -u -r1.6 NCR53c406a.c
--- drivers/scsi/NCR53c406a.c 2001/05/03 13:03:53 1.6
+++ drivers/scsi/NCR53c406a.c 2001/05/16 09:38:11
@@ -508,6 +508,7 @@
VDEB(printk("port_base=%x\n", port_base));
break;
}
+ release_region(ports[i], 0x10);
}
}
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2001-05-16 9:52 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-05-16 9:48 PATCH: NCR53c406 missing release_region Marcus Meissner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox