1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

ramips: raeth: make debugging messages configurable

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30450 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg
2012-02-11 15:12:10 +00:00
parent ad0b8c49bf
commit 3120faed8b
4 changed files with 16 additions and 4 deletions

View File

@@ -40,6 +40,12 @@ static inline void rt305x_esw_exit(void) { }
#define phys_to_bus(a) (a & 0x1FFFFFFF)
#ifdef CONFIG_RAMIPS_ETH_DEBUG
#define RADEBUG(fmt, args...) printk(KERN_DEBUG fmt, ## args)
#else
#define RADEBUG(fmt, args...) do {} while (0)
#endif
static struct net_device * ramips_dev;
static void __iomem *ramips_fe_base = 0;
@@ -443,7 +449,7 @@ ramips_eth_stop(struct net_device *dev)
tasklet_kill(&priv->tx_housekeeping_tasklet);
tasklet_kill(&priv->rx_tasklet);
ramips_cleanup_dma(priv);
printk(KERN_DEBUG "ramips_eth: stopped\n");
RADEBUG("ramips_eth: stopped\n");
return 0;
}
@@ -532,7 +538,7 @@ ramips_eth_plat_probe(struct platform_device *plat)
goto err_free_dev;
}
printk(KERN_DEBUG "ramips_eth: loaded\n");
RADEBUG("ramips_eth: loaded\n");
return 0;
err_free_dev:
@@ -547,7 +553,7 @@ ramips_eth_plat_remove(struct platform_device *plat)
{
unregister_netdev(ramips_dev);
free_netdev(ramips_dev);
printk(KERN_DEBUG "ramips_eth: unloaded\n");
RADEBUG("ramips_eth: unloaded\n");
return 0;
}