From 3f994c78d597fe1c8697b44d1dcf8c1a58ad6cd5 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Mon, 17 Apr 2000 04:39:38 +0000 Subject: [PATCH] Remove unloaded printf. We do this now in the newbus layer. --- sys/dev/an/if_an_pccard.c | 1 - sys/dev/ed/if_ed_pccard.c | 1 - sys/dev/ep/if_ep_pccard.c | 1 - 3 files changed, 3 deletions(-) diff --git a/sys/dev/an/if_an_pccard.c b/sys/dev/an/if_an_pccard.c index 4f2b961d3289..6809d6e1bbff 100644 --- a/sys/dev/an/if_an_pccard.c +++ b/sys/dev/an/if_an_pccard.c @@ -109,7 +109,6 @@ an_pccard_detach(device_t dev) sc->an_gone = 1; bus_teardown_intr(dev, sc->irq_res, sc->irq_handle); an_release_resources(dev); - device_printf(dev,"unloaded\n"); return (0); } diff --git a/sys/dev/ed/if_ed_pccard.c b/sys/dev/ed/if_ed_pccard.c index af8cd9acb6e7..c41cd72db2cc 100644 --- a/sys/dev/ed/if_ed_pccard.c +++ b/sys/dev/ed/if_ed_pccard.c @@ -95,7 +95,6 @@ ed_pccard_detach(device_t dev) sc->gone = 1; bus_teardown_intr(dev, sc->irq_res, sc->irq_handle); ed_release_resources(dev); - device_printf(dev, "unload\n"); return (0); } diff --git a/sys/dev/ep/if_ep_pccard.c b/sys/dev/ep/if_ep_pccard.c index 30eefb203111..23c089e21677 100644 --- a/sys/dev/ep/if_ep_pccard.c +++ b/sys/dev/ep/if_ep_pccard.c @@ -231,7 +231,6 @@ ep_pccard_detach(device_t dev) sc->gone = 1; bus_teardown_intr(dev, sc->irq, sc->ep_intrhand); ep_free(dev); - device_printf(dev, "unload\n"); return (0); }