From 3a5aee5adc07561d1b7c24184fcb56d776b83523 Mon Sep 17 00:00:00 2001 From: Thomas Moestl Date: Fri, 23 Apr 2004 19:43:35 +0000 Subject: [PATCH] Clean up two printf()s that were on a line by themselves unintendedly after the ethernet address printing was moved to common code. --- sys/dev/gem/if_gem.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/gem/if_gem.c b/sys/dev/gem/if_gem.c index 6532423535fd..bf1372f30fe8 100644 --- a/sys/dev/gem/if_gem.c +++ b/sys/dev/gem/if_gem.c @@ -237,11 +237,11 @@ gem_attach(sc) /* Get RX FIFO size */ sc->sc_rxfifosize = 64 * bus_space_read_4(sc->sc_bustag, sc->sc_h, GEM_RX_FIFO_SIZE); - printf(", %uKB RX fifo", sc->sc_rxfifosize / 1024); /* Get TX FIFO size */ v = bus_space_read_4(sc->sc_bustag, sc->sc_h, GEM_TX_FIFO_SIZE); - printf(", %uKB TX fifo\n", v / 16); + device_printf(sc->sc_dev, "%ukB RX FIFO, %ukB TX FIFO\n", + sc->sc_rxfifosize / 1024, v / 16); /* Initialize ifnet structure. */ ifp->if_softc = sc;