Blackfin: bfin_mac: use common debug()
authorMike Frysinger <vapier@gentoo.org>
Wed, 5 Nov 2008 11:36:15 +0000 (06:36 -0500)
committerMike Frysinger <vapier@gentoo.org>
Mon, 2 Feb 2009 17:24:26 +0000 (12:24 -0500)
Rather then defining our own DEBUGF(), just use the common debug().

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Acked-by: Ben Warren <biggerbadderben@gmail.com>
drivers/net/bfin_mac.c

index 2cdb2f840377172eb5d2b3116fb11fdd5b035d4f..d2328a9f4d0c49d06a0d815cbbefc8aec1602d7e 100644 (file)
 #include <post.h>
 #endif
 
-#undef DEBUG_ETHERNET
-
-#ifdef DEBUG_ETHERNET
-#define DEBUGF(fmt, args...) printf(fmt, ##args)
-#else
-#define DEBUGF(fmt, args...)
-#endif
-
 #define RXBUF_BASE_ADDR                0xFF900000
 #define TXBUF_BASE_ADDR                0xFF800000
 #define TX_BUF_CNT             1
@@ -175,7 +167,7 @@ static int bfin_EMAC_send(struct eth_device *dev, volatile void *packet,
        else
                txIdx++;
  out:
-       DEBUGF("BFIN EMAC send: length = %d\n", length);
+       debug("BFIN EMAC send: length = %d\n", length);
        return result;
 }
 
@@ -320,7 +312,7 @@ static int bfin_EMAC_init(struct eth_device *dev, bd_t *bd)
        u32 opmode;
        int dat;
        int i;
-       DEBUGF("Eth_init: ......\n");
+       debug("Eth_init: ......\n");
 
        txIdx = 0;
        rxIdx = 0;
@@ -383,7 +375,7 @@ static int bfin_EMAC_init(struct eth_device *dev, bd_t *bd)
 
 static void bfin_EMAC_halt(struct eth_device *dev)
 {
-       DEBUGF("Eth_halt: ......\n");
+       debug("Eth_halt: ......\n");
        /* Turn off the EMAC */
        *pEMAC_OPMODE = 0x00000000;
        /* Turn off the EMAC RX DMA */