Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/x86/x86 Back to using aprint_error() and get more i...
details: https://anonhg.NetBSD.org/src/rev/1cd42801c785
branches: trunk
changeset: 446763:1cd42801c785
user: christos <christos%NetBSD.org@localhost>
date: Mon Dec 17 16:26:03 2018 +0000
description:
Back to using aprint_error() and get more info about the error so we can
figure out why we can't map the registers.
diffstat:
sys/arch/x86/x86/ipmi.c | 20 ++++++++++++--------
1 files changed, 12 insertions(+), 8 deletions(-)
diffs (48 lines):
diff -r 2c10482da515 -r 1cd42801c785 sys/arch/x86/x86/ipmi.c
--- a/sys/arch/x86/x86/ipmi.c Mon Dec 17 15:12:52 2018 +0000
+++ b/sys/arch/x86/x86/ipmi.c Mon Dec 17 16:26:03 2018 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ipmi.c,v 1.69 2018/12/17 15:12:52 gson Exp $ */
+/* $NetBSD: ipmi.c,v 1.70 2018/12/17 16:26:03 christos Exp $ */
/*
* Copyright (c) 2006 Manuel Bouyer.
@@ -52,7 +52,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ipmi.c,v 1.69 2018/12/17 15:12:52 gson Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ipmi.c,v 1.70 2018/12/17 16:26:03 christos Exp $");
#include <sys/types.h>
#include <sys/param.h>
@@ -1923,6 +1923,8 @@
int
ipmi_map_regs(struct ipmi_softc *sc, struct ipmi_attach_args *ia)
{
+ int error;
+
sc->sc_if = ipmi_get_if(ia->iaa_if_type);
if (sc->sc_if == NULL)
return -1;
@@ -1934,12 +1936,14 @@
sc->sc_if_rev = ia->iaa_if_rev;
sc->sc_if_iospacing = ia->iaa_if_iospacing;
- if (bus_space_map(sc->sc_iot, ia->iaa_if_iobase,
- sc->sc_if->nregs * sc->sc_if_iospacing,
- 0, &sc->sc_ioh)) {
- printf("%s: bus_space_map(..., %x, %x, 0, %p) failed\n",
- __func__, ia->iaa_if_iobase,
- sc->sc_if->nregs * sc->sc_if_iospacing, &sc->sc_ioh);
+ if ((error = bus_space_map(sc->sc_iot, ia->iaa_if_iobase,
+ sc->sc_if->nregs * sc->sc_if_iospacing, 0, &sc->sc_ioh)) != 0) {
+ const char *xname = sc->sc_dev ? device_xname(sc->sc_dev) :
+ "ipmi0";
+ aprint_error("%s: %s:bus_space_map(..., %x, %x, 0, %p)"
+ " type %c failed %d\n", xname, __func__, ia->iaa_if_iobase,
+ sc->sc_if->nregs * sc->sc_if_iospacing, &sc->sc_ioh,
+ ia->iaa_if_iotype, error);
return -1;
}
#if 0
Home |
Main Index |
Thread Index |
Old Index