diff options
author | Christian Krafft <krafft@de.ibm.com> | 2007-03-05 03:30:48 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-03-05 10:57:53 -0500 |
commit | 4ff31d7757f57074ccfef352b9d156023914fb2b (patch) | |
tree | 8eb8e782d6c3677035b6c073b25d6b7fde7f77f2 /drivers/char/ipmi | |
parent | a8fa74ab529f23f812092ece8d7a4766af092332 (diff) |
[PATCH] ipmi: check, if default ports are accessible on PPC
ipmi_si_intf tries to access default ports, if no device could be found
elsewhere. On PPC we have a function to check, if these legacy IO ports
are accessible. This patch adds a check for these ports on PPC. This
patch fixes a breakage of IPMI module on PPC machines without a BMC.
Signed-off-by: Christian Krafft <krafft@de.ibm.com>
Acked-by: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Corey Minyard <minyard@acm.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/char/ipmi')
-rw-r--r-- | drivers/char/ipmi/ipmi_si_intf.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/char/ipmi/ipmi_si_intf.c b/drivers/char/ipmi/ipmi_si_intf.c index a7b33d2f5991..e22146546add 100644 --- a/drivers/char/ipmi/ipmi_si_intf.c +++ b/drivers/char/ipmi/ipmi_si_intf.c | |||
@@ -2478,6 +2478,11 @@ static __devinit void default_find_bmc(void) | |||
2478 | if (!info) | 2478 | if (!info) |
2479 | return; | 2479 | return; |
2480 | 2480 | ||
2481 | #ifdef CONFIG_PPC_MERGE | ||
2482 | if (check_legacy_ioport(ipmi_defaults[i].port)) | ||
2483 | continue; | ||
2484 | #endif | ||
2485 | |||
2481 | info->addr_source = NULL; | 2486 | info->addr_source = NULL; |
2482 | 2487 | ||
2483 | info->si_type = ipmi_defaults[i].type; | 2488 | info->si_type = ipmi_defaults[i].type; |