diff options
author | msmith <msmith@FreeBSD.org> | 1999-11-02 03:24:09 +0000 |
---|---|---|
committer | msmith <msmith@FreeBSD.org> | 1999-11-02 03:24:09 +0000 |
commit | 0581a055e6545d6be327ec8a349e5af82beba6aa (patch) | |
tree | 4833288d6bd891b7988134d0a860632ee9a162fd /sys/dev/amr/amr.c | |
parent | c4b43b216f2f130fdc58a759240356f18083f002 (diff) | |
download | FreeBSD-src-0581a055e6545d6be327ec8a349e5af82beba6aa.zip FreeBSD-src-0581a055e6545d6be327ec8a349e5af82beba6aa.tar.gz |
Don't print the chipset value; it's not useful.
Now we know what some of the state values are, print the current array
state.
Diffstat (limited to 'sys/dev/amr/amr.c')
-rw-r--r-- | sys/dev/amr/amr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/amr/amr.c b/sys/dev/amr/amr.c index 69c8d2b..bdb3c02 100644 --- a/sys/dev/amr/amr.c +++ b/sys/dev/amr/amr.c @@ -692,9 +692,9 @@ amr_query_controller(struct amr_softc *sc) } /* first-time enquiry? */ if (sc->amr_maxdrives == 0) { - device_printf(sc->amr_dev, "firmware %.4s bios %.4s %dMB memory, chipset %x\n", + device_printf(sc->amr_dev, "firmware %.4s bios %.4s %dMB memory\n", ae->ae_adapter.aa_firmware, ae->ae_adapter.aa_bios, - ae->ae_adapter.aa_memorysize, ae->ae_adapter.aa_chipsetvalue); + ae->ae_adapter.aa_memorysize); } sc->amr_maxdrives = 8; sc->amr_maxio = ae->ae_adapter.aa_maxio; |