ramips: change debug message levels, and add missing LFs

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18145 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
Gabor Juhos 2009-10-25 09:37:24 +00:00
parent 4757ce1519
commit cb237e1264
1 changed files with 5 additions and 4 deletions

View File

@ -313,7 +313,7 @@ ramips_eth_stop(struct net_device *dev)
priv->tx, priv->phy_tx); priv->tx, priv->phy_tx);
pci_free_consistent(NULL, NUM_RX_DESC * sizeof(struct ramips_rx_dma), pci_free_consistent(NULL, NUM_RX_DESC * sizeof(struct ramips_rx_dma),
priv->rx, priv->phy_rx); priv->rx, priv->phy_rx);
printk(KERN_INFO "ramips_eth: stopped\n"); printk(KERN_DEBUG "ramips_eth: stopped\n");
return 0; return 0;
} }
@ -368,7 +368,7 @@ ramips_eth_plat_probe(struct platform_device *plat)
#ifdef CONFIG_RALINK_RT305X #ifdef CONFIG_RALINK_RT305X
rt305x_esw_init(); rt305x_esw_init();
#endif #endif
printk(KERN_INFO "ramips_eth: loaded\n"); printk(KERN_DEBUG "ramips_eth: loaded\n");
return 0; return 0;
} }
@ -377,7 +377,7 @@ ramips_eth_plat_remove(struct platform_device *plat)
{ {
unregister_netdev(ramips_dev); unregister_netdev(ramips_dev);
free_netdev(ramips_dev); free_netdev(ramips_dev);
printk(KERN_INFO "ramips_eth: unloaded"); printk(KERN_DEBUG "ramips_eth: unloaded\n");
return 0; return 0;
} }
@ -395,7 +395,8 @@ ramips_eth_init(void)
{ {
int ret = platform_driver_register(&ramips_eth_driver); int ret = platform_driver_register(&ramips_eth_driver);
if (ret) if (ret)
printk(KERN_INFO "ramips_eth: Error registering platfom driver!"); printk(KERN_ERR
"ramips_eth: Error registering platfom driver!\n");
return ret; return ret;
} }