summaryrefslogtreecommitdiffstats
path: root/sys/arm
diff options
context:
space:
mode:
authorrwatson <rwatson@FreeBSD.org>2008-02-26 11:44:41 +0000
committerrwatson <rwatson@FreeBSD.org>2008-02-26 11:44:41 +0000
commit2b5ceeba3130bb9c7a8f0056b4508c7ca58f7ede (patch)
treec2f9970bb4f1c4f1004889d3cd69b613bc776c9d /sys/arm
parenteb463d58c6eef03fa2d05f00310eb607c8c048bb (diff)
downloadFreeBSD-src-2b5ceeba3130bb9c7a8f0056b4508c7ca58f7ede.zip
FreeBSD-src-2b5ceeba3130bb9c7a8f0056b4508c7ca58f7ede.tar.gz
On the ixp425, when we fail to initialize the memory rman instance, the
panic message should read "memory", not "IRQ". MFC after: 3 days
Diffstat (limited to 'sys/arm')
-rw-r--r--sys/arm/xscale/ixp425/ixp425.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arm/xscale/ixp425/ixp425.c b/sys/arm/xscale/ixp425/ixp425.c
index afac228..b1a7a56 100644
--- a/sys/arm/xscale/ixp425/ixp425.c
+++ b/sys/arm/xscale/ixp425/ixp425.c
@@ -234,7 +234,7 @@ ixp425_attach(device_t dev)
sc->sc_mem_rman.rm_descr = "IXP425 Memory";
if (rman_init(&sc->sc_mem_rman) != 0 ||
rman_manage_region(&sc->sc_mem_rman, 0, ~0) != 0)
- panic("ixp425_attach: failed to set up IRQ rman");
+ panic("ixp425_attach: failed to set up memory rman");
BUS_ADD_CHILD(dev, 0, "pcib", 0);
BUS_ADD_CHILD(dev, 0, "ixpclk", 0);
OpenPOWER on IntegriCloud