From 18d59070d64e89be50d7531162e2aa0a1464293f Mon Sep 17 00:00:00 2001 From: Robert Watson Date: Tue, 26 Feb 2008 11:44:41 +0000 Subject: [PATCH] On the ixp425, when we fail to initialize the memory rman instance, the panic message should read "memory", not "IRQ". MFC after: 3 days --- sys/arm/xscale/ixp425/ixp425.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/arm/xscale/ixp425/ixp425.c b/sys/arm/xscale/ixp425/ixp425.c index afac2285bc52..b1a7a56099b1 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);