[PATCH TRIVIAL 2.5.72] Remove check_region() from ipmi_kcs_intf.c

Bob Miller (rem@osdl.org)
Fri, 20 Jun 2003 15:06:31 -0700


This patch removes the defunct check_*_region() calls. The init_one_kcs()
call does the heavy lifting of getting the region via calls to the correct
request_*_region() function.

--
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 Jun 20 13:57:08 2003 +++ b/drivers/char/ipmi/ipmi_kcs_intf.c Fri Jun 20 13:57:08 2003 @@ -1104,24 +1104,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) { - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/