* [PATCH 2.5.68] Convert ipmi_kcs_intf.c to remove check_region().
@ 2003-05-02 20:41 Bob Miller
0 siblings, 0 replies; only message in thread
From: Bob Miller @ 2003-05-02 20:41 UTC (permalink / raw)
To: linux-kernel; +Cc: trivial
Removed the now defunct check_mem_region() and check_region() calls.
The driver doesn't use the memory/ioport address between the check_region()
and request_region() calls so it is safe to just remove the check_region()
call.
--
Bob Miller Email: rem@osdl.org
Open Source Development Lab Phone: 503.626.2455 Ext. 17
diff -Nru a/drivers/char/ipmi/ipmi_kcs_intf.c b/drivers/char/ipmi/ipmi_kcs_intf.c
--- a/drivers/char/ipmi/ipmi_kcs_intf.c Fri May 2 09:52:22 2003
+++ b/drivers/char/ipmi/ipmi_kcs_intf.c Fri May 2 09:52:22 2003
@@ -1118,24 +1118,14 @@
if (kcs_trydefaults) {
#ifdef CONFIG_ACPI
if ((physaddr = acpi_find_bmc())) {
- if (!check_mem_region(physaddr, 2)) {
- rv = init_one_kcs(0,
- 0,
- physaddr,
- &(kcs_infos[pos]));
- if (rv == 0)
- pos++;
- }
- }
-#endif
- if (!check_region(DEFAULT_IO_PORT, 2)) {
- rv = init_one_kcs(DEFAULT_IO_PORT,
- 0,
- 0,
- &(kcs_infos[pos]));
+ rv = init_one_kcs(0, 0, physaddr, &(kcs_infos[pos]));
if (rv == 0)
pos++;
}
+#endif
+ rv = init_one_kcs(DEFAULT_IO_PORT, 0, 0, &(kcs_infos[pos]));
+ if (rv == 0)
+ pos++;
}
if (kcs_infos[0] == NULL) {
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2003-05-02 20:29 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-05-02 20:41 [PATCH 2.5.68] Convert ipmi_kcs_intf.c to remove check_region() Bob Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®