Commit 49ae25b0 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman Committed by David S. Miller

USB: remove dbg() usage in USB networking drivers

The dbg() USB macro is so old, it predates me.  The USB networking drivers are
the last hold-out using this macro, and we want to get rid of it, so replace
the usage of it with the proper netdev_dbg() or dev_dbg() (depending on the
context) calls.

Some places we end up using a local variable for the debug call, so also
convert the other existing dev_* calls to use it as well, to save tiny amounts
of code space.
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 4308fc58
...@@ -221,7 +221,8 @@ static int ax88172_bind(struct usbnet *dev, struct usb_interface *intf) ...@@ -221,7 +221,8 @@ static int ax88172_bind(struct usbnet *dev, struct usb_interface *intf)
/* Get the MAC address */ /* Get the MAC address */
ret = asix_read_cmd(dev, AX88172_CMD_READ_NODE_ID, 0, 0, ETH_ALEN, buf); ret = asix_read_cmd(dev, AX88172_CMD_READ_NODE_ID, 0, 0, ETH_ALEN, buf);
if (ret < 0) { if (ret < 0) {
dbg("read AX_CMD_READ_NODE_ID failed: %d", ret); netdev_dbg(dev->net, "read AX_CMD_READ_NODE_ID failed: %d\n",
ret);
goto out; goto out;
} }
memcpy(dev->net->dev_addr, buf, ETH_ALEN); memcpy(dev->net->dev_addr, buf, ETH_ALEN);
...@@ -303,7 +304,7 @@ static int ax88772_reset(struct usbnet *dev) ...@@ -303,7 +304,7 @@ static int ax88772_reset(struct usbnet *dev)
ret = asix_write_cmd(dev, AX_CMD_SW_PHY_SELECT, embd_phy, 0, 0, NULL); ret = asix_write_cmd(dev, AX_CMD_SW_PHY_SELECT, embd_phy, 0, 0, NULL);
if (ret < 0) { if (ret < 0) {
dbg("Select PHY #1 failed: %d", ret); netdev_dbg(dev->net, "Select PHY #1 failed: %d\n", ret);
goto out; goto out;
} }
...@@ -331,13 +332,13 @@ static int ax88772_reset(struct usbnet *dev) ...@@ -331,13 +332,13 @@ static int ax88772_reset(struct usbnet *dev)
msleep(150); msleep(150);
rx_ctl = asix_read_rx_ctl(dev); rx_ctl = asix_read_rx_ctl(dev);
dbg("RX_CTL is 0x%04x after software reset", rx_ctl); netdev_dbg(dev->net, "RX_CTL is 0x%04x after software reset\n", rx_ctl);
ret = asix_write_rx_ctl(dev, 0x0000); ret = asix_write_rx_ctl(dev, 0x0000);
if (ret < 0) if (ret < 0)
goto out; goto out;
rx_ctl = asix_read_rx_ctl(dev); rx_ctl = asix_read_rx_ctl(dev);
dbg("RX_CTL is 0x%04x setting to 0x0000", rx_ctl); netdev_dbg(dev->net, "RX_CTL is 0x%04x setting to 0x0000\n", rx_ctl);
ret = asix_sw_reset(dev, AX_SWRESET_PRL); ret = asix_sw_reset(dev, AX_SWRESET_PRL);
if (ret < 0) if (ret < 0)
...@@ -364,7 +365,7 @@ static int ax88772_reset(struct usbnet *dev) ...@@ -364,7 +365,7 @@ static int ax88772_reset(struct usbnet *dev)
AX88772_IPG0_DEFAULT | AX88772_IPG1_DEFAULT, AX88772_IPG0_DEFAULT | AX88772_IPG1_DEFAULT,
AX88772_IPG2_DEFAULT, 0, NULL); AX88772_IPG2_DEFAULT, 0, NULL);
if (ret < 0) { if (ret < 0) {
dbg("Write IPG,IPG1,IPG2 failed: %d", ret); netdev_dbg(dev->net, "Write IPG,IPG1,IPG2 failed: %d\n", ret);
goto out; goto out;
} }
...@@ -381,10 +382,13 @@ static int ax88772_reset(struct usbnet *dev) ...@@ -381,10 +382,13 @@ static int ax88772_reset(struct usbnet *dev)
goto out; goto out;
rx_ctl = asix_read_rx_ctl(dev); rx_ctl = asix_read_rx_ctl(dev);
dbg("RX_CTL is 0x%04x after all initializations", rx_ctl); netdev_dbg(dev->net, "RX_CTL is 0x%04x after all initializations\n",
rx_ctl);
rx_ctl = asix_read_medium_status(dev); rx_ctl = asix_read_medium_status(dev);
dbg("Medium Status is 0x%04x after all initializations", rx_ctl); netdev_dbg(dev->net,
"Medium Status is 0x%04x after all initializations\n",
rx_ctl);
return 0; return 0;
...@@ -416,7 +420,7 @@ static int ax88772_bind(struct usbnet *dev, struct usb_interface *intf) ...@@ -416,7 +420,7 @@ static int ax88772_bind(struct usbnet *dev, struct usb_interface *intf)
/* Get the MAC address */ /* Get the MAC address */
ret = asix_read_cmd(dev, AX_CMD_READ_NODE_ID, 0, 0, ETH_ALEN, buf); ret = asix_read_cmd(dev, AX_CMD_READ_NODE_ID, 0, 0, ETH_ALEN, buf);
if (ret < 0) { if (ret < 0) {
dbg("Failed to read MAC address: %d", ret); netdev_dbg(dev->net, "Failed to read MAC address: %d\n", ret);
return ret; return ret;
} }
memcpy(dev->net->dev_addr, buf, ETH_ALEN); memcpy(dev->net->dev_addr, buf, ETH_ALEN);
...@@ -439,7 +443,7 @@ static int ax88772_bind(struct usbnet *dev, struct usb_interface *intf) ...@@ -439,7 +443,7 @@ static int ax88772_bind(struct usbnet *dev, struct usb_interface *intf)
/* Reset the PHY to normal operation mode */ /* Reset the PHY to normal operation mode */
ret = asix_write_cmd(dev, AX_CMD_SW_PHY_SELECT, embd_phy, 0, 0, NULL); ret = asix_write_cmd(dev, AX_CMD_SW_PHY_SELECT, embd_phy, 0, 0, NULL);
if (ret < 0) { if (ret < 0) {
dbg("Select PHY #1 failed: %d", ret); netdev_dbg(dev->net, "Select PHY #1 failed: %d\n", ret);
return ret; return ret;
} }
...@@ -459,7 +463,7 @@ static int ax88772_bind(struct usbnet *dev, struct usb_interface *intf) ...@@ -459,7 +463,7 @@ static int ax88772_bind(struct usbnet *dev, struct usb_interface *intf)
/* Read PHYID register *AFTER* the PHY was reset properly */ /* Read PHYID register *AFTER* the PHY was reset properly */
phyid = asix_get_phyid(dev); phyid = asix_get_phyid(dev);
dbg("PHYID=0x%08x", phyid); netdev_dbg(dev->net, "PHYID=0x%08x\n", phyid);
/* Asix framing packs multiple eth frames into a 2K usb bulk transfer */ /* Asix framing packs multiple eth frames into a 2K usb bulk transfer */
if (dev->driver_info->flags & FLAG_FRAMING_AX) { if (dev->driver_info->flags & FLAG_FRAMING_AX) {
...@@ -575,13 +579,13 @@ static int ax88178_reset(struct usbnet *dev) ...@@ -575,13 +579,13 @@ static int ax88178_reset(struct usbnet *dev)
u32 phyid; u32 phyid;
asix_read_cmd(dev, AX_CMD_READ_GPIOS, 0, 0, 1, &status); asix_read_cmd(dev, AX_CMD_READ_GPIOS, 0, 0, 1, &status);
dbg("GPIO Status: 0x%04x", status); netdev_dbg(dev->net, "GPIO Status: 0x%04x\n", status);
asix_write_cmd(dev, AX_CMD_WRITE_ENABLE, 0, 0, 0, NULL); asix_write_cmd(dev, AX_CMD_WRITE_ENABLE, 0, 0, 0, NULL);
asix_read_cmd(dev, AX_CMD_READ_EEPROM, 0x0017, 0, 2, &eeprom); asix_read_cmd(dev, AX_CMD_READ_EEPROM, 0x0017, 0, 2, &eeprom);
asix_write_cmd(dev, AX_CMD_WRITE_DISABLE, 0, 0, 0, NULL); asix_write_cmd(dev, AX_CMD_WRITE_DISABLE, 0, 0, 0, NULL);
dbg("EEPROM index 0x17 is 0x%04x", eeprom); netdev_dbg(dev->net, "EEPROM index 0x17 is 0x%04x\n", eeprom);
if (eeprom == cpu_to_le16(0xffff)) { if (eeprom == cpu_to_le16(0xffff)) {
data->phymode = PHY_MODE_MARVELL; data->phymode = PHY_MODE_MARVELL;
...@@ -592,7 +596,7 @@ static int ax88178_reset(struct usbnet *dev) ...@@ -592,7 +596,7 @@ static int ax88178_reset(struct usbnet *dev)
data->ledmode = le16_to_cpu(eeprom) >> 8; data->ledmode = le16_to_cpu(eeprom) >> 8;
gpio0 = (le16_to_cpu(eeprom) & 0x80) ? 0 : 1; gpio0 = (le16_to_cpu(eeprom) & 0x80) ? 0 : 1;
} }
dbg("GPIO0: %d, PhyMode: %d", gpio0, data->phymode); netdev_dbg(dev->net, "GPIO0: %d, PhyMode: %d\n", gpio0, data->phymode);
/* Power up external GigaPHY through AX88178 GPIO pin */ /* Power up external GigaPHY through AX88178 GPIO pin */
asix_write_gpio(dev, AX_GPIO_RSE | AX_GPIO_GPO_1 | AX_GPIO_GPO1EN, 40); asix_write_gpio(dev, AX_GPIO_RSE | AX_GPIO_GPO_1 | AX_GPIO_GPO1EN, 40);
...@@ -601,14 +605,14 @@ static int ax88178_reset(struct usbnet *dev) ...@@ -601,14 +605,14 @@ static int ax88178_reset(struct usbnet *dev)
asix_write_gpio(dev, 0x001c, 300); asix_write_gpio(dev, 0x001c, 300);
asix_write_gpio(dev, 0x003c, 30); asix_write_gpio(dev, 0x003c, 30);
} else { } else {
dbg("gpio phymode == 1 path"); netdev_dbg(dev->net, "gpio phymode == 1 path\n");
asix_write_gpio(dev, AX_GPIO_GPO1EN, 30); asix_write_gpio(dev, AX_GPIO_GPO1EN, 30);
asix_write_gpio(dev, AX_GPIO_GPO1EN | AX_GPIO_GPO_1, 30); asix_write_gpio(dev, AX_GPIO_GPO1EN | AX_GPIO_GPO_1, 30);
} }
/* Read PHYID register *AFTER* powering up PHY */ /* Read PHYID register *AFTER* powering up PHY */
phyid = asix_get_phyid(dev); phyid = asix_get_phyid(dev);
dbg("PHYID=0x%08x", phyid); netdev_dbg(dev->net, "PHYID=0x%08x\n", phyid);
/* Set AX88178 to enable MII/GMII/RGMII interface for external PHY */ /* Set AX88178 to enable MII/GMII/RGMII interface for external PHY */
asix_write_cmd(dev, AX_CMD_SW_PHY_SELECT, 0, 0, 0, NULL); asix_write_cmd(dev, AX_CMD_SW_PHY_SELECT, 0, 0, 0, NULL);
...@@ -770,7 +774,7 @@ static int ax88178_bind(struct usbnet *dev, struct usb_interface *intf) ...@@ -770,7 +774,7 @@ static int ax88178_bind(struct usbnet *dev, struct usb_interface *intf)
/* Get the MAC address */ /* Get the MAC address */
ret = asix_read_cmd(dev, AX_CMD_READ_NODE_ID, 0, 0, ETH_ALEN, buf); ret = asix_read_cmd(dev, AX_CMD_READ_NODE_ID, 0, 0, ETH_ALEN, buf);
if (ret < 0) { if (ret < 0) {
dbg("Failed to read MAC address: %d", ret); netdev_dbg(dev->net, "Failed to read MAC address: %d\n", ret);
return ret; return ret;
} }
memcpy(dev->net->dev_addr, buf, ETH_ALEN); memcpy(dev->net->dev_addr, buf, ETH_ALEN);
......
...@@ -236,7 +236,8 @@ static void catc_rx_done(struct urb *urb) ...@@ -236,7 +236,8 @@ static void catc_rx_done(struct urb *urb)
} }
if (status) { if (status) {
dbg("rx_done, status %d, length %d", status, urb->actual_length); dev_dbg(&urb->dev->dev, "rx_done, status %d, length %d\n",
status, urb->actual_length);
return; return;
} }
...@@ -275,10 +276,11 @@ static void catc_rx_done(struct urb *urb) ...@@ -275,10 +276,11 @@ static void catc_rx_done(struct urb *urb)
if (atomic_read(&catc->recq_sz)) { if (atomic_read(&catc->recq_sz)) {
int state; int state;
atomic_dec(&catc->recq_sz); atomic_dec(&catc->recq_sz);
dbg("getting extra packet"); netdev_dbg(catc->netdev, "getting extra packet\n");
urb->dev = catc->usbdev; urb->dev = catc->usbdev;
if ((state = usb_submit_urb(urb, GFP_ATOMIC)) < 0) { if ((state = usb_submit_urb(urb, GFP_ATOMIC)) < 0) {
dbg("submit(rx_urb) status %d", state); netdev_dbg(catc->netdev,
"submit(rx_urb) status %d\n", state);
} }
} else { } else {
clear_bit(RX_RUNNING, &catc->flags); clear_bit(RX_RUNNING, &catc->flags);
...@@ -317,18 +319,20 @@ static void catc_irq_done(struct urb *urb) ...@@ -317,18 +319,20 @@ static void catc_irq_done(struct urb *urb)
return; return;
/* -EPIPE: should clear the halt */ /* -EPIPE: should clear the halt */
default: /* error */ default: /* error */
dbg("irq_done, status %d, data %02x %02x.", status, data[0], data[1]); dev_dbg(&urb->dev->dev,
"irq_done, status %d, data %02x %02x.\n",
status, data[0], data[1]);
goto resubmit; goto resubmit;
} }
if (linksts == LinkGood) { if (linksts == LinkGood) {
netif_carrier_on(catc->netdev); netif_carrier_on(catc->netdev);
dbg("link ok"); netdev_dbg(catc->netdev, "link ok\n");
} }
if (linksts == LinkBad) { if (linksts == LinkBad) {
netif_carrier_off(catc->netdev); netif_carrier_off(catc->netdev);
dbg("link bad"); netdev_dbg(catc->netdev, "link bad\n");
} }
if (hasdata) { if (hasdata) {
...@@ -385,7 +389,7 @@ static void catc_tx_done(struct urb *urb) ...@@ -385,7 +389,7 @@ static void catc_tx_done(struct urb *urb)
int r, status = urb->status; int r, status = urb->status;
if (status == -ECONNRESET) { if (status == -ECONNRESET) {
dbg("Tx Reset."); dev_dbg(&urb->dev->dev, "Tx Reset.\n");
urb->status = 0; urb->status = 0;
catc->netdev->trans_start = jiffies; catc->netdev->trans_start = jiffies;
catc->netdev->stats.tx_errors++; catc->netdev->stats.tx_errors++;
...@@ -395,7 +399,8 @@ static void catc_tx_done(struct urb *urb) ...@@ -395,7 +399,8 @@ static void catc_tx_done(struct urb *urb)
} }
if (status) { if (status) {
dbg("tx_done, status %d, length %d", status, urb->actual_length); dev_dbg(&urb->dev->dev, "tx_done, status %d, length %d\n",
status, urb->actual_length);
return; return;
} }
...@@ -511,7 +516,8 @@ static void catc_ctrl_done(struct urb *urb) ...@@ -511,7 +516,8 @@ static void catc_ctrl_done(struct urb *urb)
int status = urb->status; int status = urb->status;
if (status) if (status)
dbg("ctrl_done, status %d, len %d.", status, urb->actual_length); dev_dbg(&urb->dev->dev, "ctrl_done, status %d, len %d.\n",
status, urb->actual_length);
spin_lock_irqsave(&catc->ctrl_lock, flags); spin_lock_irqsave(&catc->ctrl_lock, flags);
...@@ -667,7 +673,9 @@ static void catc_set_multicast_list(struct net_device *netdev) ...@@ -667,7 +673,9 @@ static void catc_set_multicast_list(struct net_device *netdev)
f5u011_mchash_async(catc, catc->multicast); f5u011_mchash_async(catc, catc->multicast);
if (catc->rxmode[0] != rx) { if (catc->rxmode[0] != rx) {
catc->rxmode[0] = rx; catc->rxmode[0] = rx;
dbg("Setting RX mode to %2.2X %2.2X", catc->rxmode[0], catc->rxmode[1]); netdev_dbg(catc->netdev,
"Setting RX mode to %2.2X %2.2X\n",
catc->rxmode[0], catc->rxmode[1]);
f5u011_rxmode_async(catc, catc->rxmode); f5u011_rxmode_async(catc, catc->rxmode);
} }
} }
...@@ -766,6 +774,7 @@ static const struct net_device_ops catc_netdev_ops = { ...@@ -766,6 +774,7 @@ static const struct net_device_ops catc_netdev_ops = {
static int catc_probe(struct usb_interface *intf, const struct usb_device_id *id) static int catc_probe(struct usb_interface *intf, const struct usb_device_id *id)
{ {
struct device *dev = &intf->dev;
struct usb_device *usbdev = interface_to_usbdev(intf); struct usb_device *usbdev = interface_to_usbdev(intf);
struct net_device *netdev; struct net_device *netdev;
struct catc *catc; struct catc *catc;
...@@ -774,7 +783,7 @@ static int catc_probe(struct usb_interface *intf, const struct usb_device_id *id ...@@ -774,7 +783,7 @@ static int catc_probe(struct usb_interface *intf, const struct usb_device_id *id
if (usb_set_interface(usbdev, if (usb_set_interface(usbdev,
intf->altsetting->desc.bInterfaceNumber, 1)) { intf->altsetting->desc.bInterfaceNumber, 1)) {
dev_err(&intf->dev, "Can't set altsetting 1.\n"); dev_err(dev, "Can't set altsetting 1.\n");
return -EIO; return -EIO;
} }
...@@ -817,7 +826,7 @@ static int catc_probe(struct usb_interface *intf, const struct usb_device_id *id ...@@ -817,7 +826,7 @@ static int catc_probe(struct usb_interface *intf, const struct usb_device_id *id
if (le16_to_cpu(usbdev->descriptor.idVendor) == 0x0423 && if (le16_to_cpu(usbdev->descriptor.idVendor) == 0x0423 &&
le16_to_cpu(usbdev->descriptor.idProduct) == 0xa && le16_to_cpu(usbdev->descriptor.idProduct) == 0xa &&
le16_to_cpu(catc->usbdev->descriptor.bcdDevice) == 0x0130) { le16_to_cpu(catc->usbdev->descriptor.bcdDevice) == 0x0130) {
dbg("Testing for f5u011"); dev_dbg(dev, "Testing for f5u011\n");
catc->is_f5u011 = 1; catc->is_f5u011 = 1;
atomic_set(&catc->recq_sz, 0); atomic_set(&catc->recq_sz, 0);
pktsz = RX_PKT_SZ; pktsz = RX_PKT_SZ;
...@@ -838,7 +847,7 @@ static int catc_probe(struct usb_interface *intf, const struct usb_device_id *id ...@@ -838,7 +847,7 @@ static int catc_probe(struct usb_interface *intf, const struct usb_device_id *id
catc->irq_buf, 2, catc_irq_done, catc, 1); catc->irq_buf, 2, catc_irq_done, catc, 1);
if (!catc->is_f5u011) { if (!catc->is_f5u011) {
dbg("Checking memory size\n"); dev_dbg(dev, "Checking memory size\n");
i = 0x12345678; i = 0x12345678;
catc_write_mem(catc, 0x7a80, &i, 4); catc_write_mem(catc, 0x7a80, &i, 4);
...@@ -850,7 +859,7 @@ static int catc_probe(struct usb_interface *intf, const struct usb_device_id *id ...@@ -850,7 +859,7 @@ static int catc_probe(struct usb_interface *intf, const struct usb_device_id *id
case 0x12345678: case 0x12345678:
catc_set_reg(catc, TxBufCount, 8); catc_set_reg(catc, TxBufCount, 8);
catc_set_reg(catc, RxBufCount, 32); catc_set_reg(catc, RxBufCount, 32);
dbg("64k Memory\n"); dev_dbg(dev, "64k Memory\n");
break; break;
default: default:
dev_warn(&intf->dev, dev_warn(&intf->dev,
...@@ -858,49 +867,49 @@ static int catc_probe(struct usb_interface *intf, const struct usb_device_id *id ...@@ -858,49 +867,49 @@ static int catc_probe(struct usb_interface *intf, const struct usb_device_id *id
case 0x87654321: case 0x87654321:
catc_set_reg(catc, TxBufCount, 4); catc_set_reg(catc, TxBufCount, 4);
catc_set_reg(catc, RxBufCount, 16); catc_set_reg(catc, RxBufCount, 16);
dbg("32k Memory\n"); dev_dbg(dev, "32k Memory\n");
break; break;
} }
dbg("Getting MAC from SEEROM."); dev_dbg(dev, "Getting MAC from SEEROM.\n");
catc_get_mac(catc, netdev->dev_addr); catc_get_mac(catc, netdev->dev_addr);
dbg("Setting MAC into registers."); dev_dbg(dev, "Setting MAC into registers.\n");
for (i = 0; i < 6; i++) for (i = 0; i < 6; i++)
catc_set_reg(catc, StationAddr0 - i, netdev->dev_addr[i]); catc_set_reg(catc, StationAddr0 - i, netdev->dev_addr[i]);
dbg("Filling the multicast list."); dev_dbg(dev, "Filling the multicast list.\n");
memset(broadcast, 0xff, 6); memset(broadcast, 0xff, 6);
catc_multicast(broadcast, catc->multicast); catc_multicast(broadcast, catc->multicast);
catc_multicast(netdev->dev_addr, catc->multicast); catc_multicast(netdev->dev_addr, catc->multicast);
catc_write_mem(catc, 0xfa80, catc->multicast, 64); catc_write_mem(catc, 0xfa80, catc->multicast, 64);
dbg("Clearing error counters."); dev_dbg(dev, "Clearing error counters.\n");
for (i = 0; i < 8; i++) for (i = 0; i < 8; i++)
catc_set_reg(catc, EthStats + i, 0); catc_set_reg(catc, EthStats + i, 0);
catc->last_stats = jiffies; catc->last_stats = jiffies;
dbg("Enabling."); dev_dbg(dev, "Enabling.\n");
catc_set_reg(catc, MaxBurst, RX_MAX_BURST); catc_set_reg(catc, MaxBurst, RX_MAX_BURST);
catc_set_reg(catc, OpModes, OpTxMerge | OpRxMerge | OpLenInclude | Op3MemWaits); catc_set_reg(catc, OpModes, OpTxMerge | OpRxMerge | OpLenInclude | Op3MemWaits);
catc_set_reg(catc, LEDCtrl, LEDLink); catc_set_reg(catc, LEDCtrl, LEDLink);
catc_set_reg(catc, RxUnit, RxEnable | RxPolarity | RxMultiCast); catc_set_reg(catc, RxUnit, RxEnable | RxPolarity | RxMultiCast);
} else { } else {
dbg("Performing reset\n"); dev_dbg(dev, "Performing reset\n");
catc_reset(catc); catc_reset(catc);
catc_get_mac(catc, netdev->dev_addr); catc_get_mac(catc, netdev->dev_addr);
dbg("Setting RX Mode"); dev_dbg(dev, "Setting RX Mode\n");
catc->rxmode[0] = RxEnable | RxPolarity | RxMultiCast; catc->rxmode[0] = RxEnable | RxPolarity | RxMultiCast;
catc->rxmode[1] = 0; catc->rxmode[1] = 0;
f5u011_rxmode(catc, catc->rxmode); f5u011_rxmode(catc, catc->rxmode);
} }
dbg("Init done."); dev_dbg(dev, "Init done.\n");
printk(KERN_INFO "%s: %s USB Ethernet at usb-%s-%s, %pM.\n", printk(KERN_INFO "%s: %s USB Ethernet at usb-%s-%s, %pM.\n",
netdev->name, (catc->is_f5u011) ? "Belkin F5U011" : "CATC EL1210A NetMate", netdev->name, (catc->is_f5u011) ? "Belkin F5U011" : "CATC EL1210A NetMate",
usbdev->bus->bus_name, usbdev->devpath, netdev->dev_addr); usbdev->bus->bus_name, usbdev->devpath, netdev->dev_addr);
......
...@@ -91,7 +91,9 @@ static int genelink_rx_fixup(struct usbnet *dev, struct sk_buff *skb) ...@@ -91,7 +91,9 @@ static int genelink_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
// get the packet count of the received skb // get the packet count of the received skb
count = le32_to_cpu(header->packet_count); count = le32_to_cpu(header->packet_count);
if (count > GL_MAX_TRANSMIT_PACKETS) { if (count > GL_MAX_TRANSMIT_PACKETS) {
dbg("genelink: invalid received packet count %u", count); netdev_dbg(dev->net,
"genelink: invalid received packet count %u\n",
count);
return 0; return 0;
} }
...@@ -107,7 +109,8 @@ static int genelink_rx_fixup(struct usbnet *dev, struct sk_buff *skb) ...@@ -107,7 +109,8 @@ static int genelink_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
// this may be a broken packet // this may be a broken packet
if (size > GL_MAX_PACKET_LEN) { if (size > GL_MAX_PACKET_LEN) {
dbg("genelink: invalid rx length %d", size); netdev_dbg(dev->net, "genelink: invalid rx length %d\n",
size);
return 0; return 0;
} }
...@@ -133,7 +136,8 @@ static int genelink_rx_fixup(struct usbnet *dev, struct sk_buff *skb) ...@@ -133,7 +136,8 @@ static int genelink_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
skb_pull(skb, 4); skb_pull(skb, 4);
if (skb->len > GL_MAX_PACKET_LEN) { if (skb->len > GL_MAX_PACKET_LEN) {
dbg("genelink: invalid rx length %d", skb->len); netdev_dbg(dev->net, "genelink: invalid rx length %d\n",
skb->len);
return 0; return 0;
} }
return 1; return 1;
......
This diff is collapsed.
...@@ -155,12 +155,10 @@ static void nc_dump_registers(struct usbnet *dev) ...@@ -155,12 +155,10 @@ static void nc_dump_registers(struct usbnet *dev)
u8 reg; u8 reg;
u16 *vp = kmalloc(sizeof (u16)); u16 *vp = kmalloc(sizeof (u16));
if (!vp) { if (!vp)
dbg("no memory?");
return; return;
}
dbg("%s registers:", dev->net->name); netdev_dbg(dev->net, "registers:\n");
for (reg = 0; reg < 0x20; reg++) { for (reg = 0; reg < 0x20; reg++) {
int retval; int retval;
...@@ -172,11 +170,10 @@ static void nc_dump_registers(struct usbnet *dev) ...@@ -172,11 +170,10 @@ static void nc_dump_registers(struct usbnet *dev)
retval = nc_register_read(dev, reg, vp); retval = nc_register_read(dev, reg, vp);
if (retval < 0) if (retval < 0)
dbg("%s reg [0x%x] ==> error %d", netdev_dbg(dev->net, "reg [0x%x] ==> error %d\n",
dev->net->name, reg, retval); reg, retval);
else else
dbg("%s reg [0x%x] = 0x%x", netdev_dbg(dev->net, "reg [0x%x] = 0x%x\n", reg, *vp);
dev->net->name, reg, *vp);
} }
kfree(vp); kfree(vp);
} }
...@@ -300,15 +297,15 @@ static int net1080_reset(struct usbnet *dev) ...@@ -300,15 +297,15 @@ static int net1080_reset(struct usbnet *dev)
// nc_dump_registers(dev); // nc_dump_registers(dev);
if ((retval = nc_register_read(dev, REG_STATUS, vp)) < 0) { if ((retval = nc_register_read(dev, REG_STATUS, vp)) < 0) {
dbg("can't read %s-%s status: %d", netdev_dbg(dev->net, "can't read %s-%s status: %d\n",
dev->udev->bus->bus_name, dev->udev->devpath, retval); dev->udev->bus->bus_name, dev->udev->devpath, retval);
goto done; goto done;
} }
status = *vp; status = *vp;
nc_dump_status(dev, status); nc_dump_status(dev, status);
if ((retval = nc_register_read(dev, REG_USBCTL, vp)) < 0) { if ((retval = nc_register_read(dev, REG_USBCTL, vp)) < 0) {
dbg("can't read USBCTL, %d", retval); netdev_dbg(dev->net, "can't read USBCTL, %d\n", retval);
goto done; goto done;
} }
usbctl = *vp; usbctl = *vp;
...@@ -318,7 +315,7 @@ static int net1080_reset(struct usbnet *dev) ...@@ -318,7 +315,7 @@ static int net1080_reset(struct usbnet *dev)
USBCTL_FLUSH_THIS | USBCTL_FLUSH_OTHER); USBCTL_FLUSH_THIS | USBCTL_FLUSH_OTHER);
if ((retval = nc_register_read(dev, REG_TTL, vp)) < 0) { if ((retval = nc_register_read(dev, REG_TTL, vp)) < 0) {
dbg("can't read TTL, %d", retval); netdev_dbg(dev->net, "can't read TTL, %d\n", retval);
goto done; goto done;
} }
ttl = *vp; ttl = *vp;
...@@ -326,7 +323,7 @@ static int net1080_reset(struct usbnet *dev) ...@@ -326,7 +323,7 @@ static int net1080_reset(struct usbnet *dev)
nc_register_write(dev, REG_TTL, nc_register_write(dev, REG_TTL,
MK_TTL(NC_READ_TTL_MS, TTL_OTHER(ttl)) ); MK_TTL(NC_READ_TTL_MS, TTL_OTHER(ttl)) );
dbg("%s: assigned TTL, %d ms", dev->net->name, NC_READ_TTL_MS); netdev_dbg(dev->net, "assigned TTL, %d ms\n", NC_READ_TTL_MS);
netif_info(dev, link, dev->net, "port %c, peer %sconnected\n", netif_info(dev, link, dev->net, "port %c, peer %sconnected\n",
(status & STATUS_PORT_A) ? 'A' : 'B', (status & STATUS_PORT_A) ? 'A' : 'B',
...@@ -350,7 +347,7 @@ static int net1080_check_connect(struct usbnet *dev) ...@@ -350,7 +347,7 @@ static int net1080_check_connect(struct usbnet *dev)
status = *vp; status = *vp;
kfree(vp); kfree(vp);
if (retval != 0) { if (retval != 0) {
dbg("%s net1080_check_conn read - %d", dev->net->name, retval); netdev_dbg(dev->net, "net1080_check_conn read - %d\n", retval);
return retval; return retval;
} }
if ((status & STATUS_CONN_OTHER) != STATUS_CONN_OTHER) if ((status & STATUS_CONN_OTHER) != STATUS_CONN_OTHER)
...@@ -422,8 +419,9 @@ static int net1080_rx_fixup(struct usbnet *dev, struct sk_buff *skb) ...@@ -422,8 +419,9 @@ static int net1080_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
if (!(skb->len & 0x01)) { if (!(skb->len & 0x01)) {
#ifdef DEBUG #ifdef DEBUG
struct net_device *net = dev->net; struct net_device *net = dev->net;
dbg("rx framesize %d range %d..%d mtu %d", skb->len, netdev_dbg(dev->net, "rx framesize %d range %d..%d mtu %d\n",
net->hard_header_len, dev->hard_mtu, net->mtu); skb->len, net->hard_header_len, dev->hard_mtu,
net->mtu);
#endif #endif
dev->net->stats.rx_frame_errors++; dev->net->stats.rx_frame_errors++;
nc_ensure_sync(dev); nc_ensure_sync(dev);
...@@ -435,17 +433,17 @@ static int net1080_rx_fixup(struct usbnet *dev, struct sk_buff *skb) ...@@ -435,17 +433,17 @@ static int net1080_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
packet_len = le16_to_cpup(&header->packet_len); packet_len = le16_to_cpup(&header->packet_len);
if (FRAMED_SIZE(packet_len) > NC_MAX_PACKET) { if (FRAMED_SIZE(packet_len) > NC_MAX_PACKET) {
dev->net->stats.rx_frame_errors++; dev->net->stats.rx_frame_errors++;
dbg("packet too big, %d", packet_len); netdev_dbg(dev->net, "packet too big, %d\n", packet_len);
nc_ensure_sync(dev); nc_ensure_sync(dev);
return 0; return 0;
} else if (hdr_len < MIN_HEADER) { } else if (hdr_len < MIN_HEADER) {
dev->net->stats.rx_frame_errors++; dev->net->stats.rx_frame_errors++;
dbg("header too short, %d", hdr_len); netdev_dbg(dev->net, "header too short, %d\n", hdr_len);
nc_ensure_sync(dev); nc_ensure_sync(dev);
return 0; return 0;
} else if (hdr_len > MIN_HEADER) { } else if (hdr_len > MIN_HEADER) {
// out of band data for us? // out of band data for us?
dbg("header OOB, %d bytes", hdr_len - MIN_HEADER); netdev_dbg(dev->net, "header OOB, %d bytes\n", hdr_len - MIN_HEADER);
nc_ensure_sync(dev); nc_ensure_sync(dev);
// switch (vendor/product ids) { ... } // switch (vendor/product ids) { ... }
} }
...@@ -458,23 +456,23 @@ static int net1080_rx_fixup(struct usbnet *dev, struct sk_buff *skb) ...@@ -458,23 +456,23 @@ static int net1080_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
if ((packet_len & 0x01) == 0) { if ((packet_len & 0x01) == 0) {
if (skb->data [packet_len] != PAD_BYTE) { if (skb->data [packet_len] != PAD_BYTE) {
dev->net->stats.rx_frame_errors++; dev->net->stats.rx_frame_errors++;
dbg("bad pad"); netdev_dbg(dev->net, "bad pad\n");
return 0; return 0;
} }
skb_trim(skb, skb->len - 1); skb_trim(skb, skb->len - 1);
} }
if (skb->len != packet_len) { if (skb->len != packet_len) {
dev->net->stats.rx_frame_errors++; dev->net->stats.rx_frame_errors++;
dbg("bad packet len %d (expected %d)", netdev_dbg(dev->net, "bad packet len %d (expected %d)\n",
skb->len, packet_len); skb->len, packet_len);
nc_ensure_sync(dev); nc_ensure_sync(dev);
return 0; return 0;
} }
if (header->packet_id != get_unaligned(&trailer->packet_id)) { if (header->packet_id != get_unaligned(&trailer->packet_id)) {
dev->net->stats.rx_fifo_errors++; dev->net->stats.rx_fifo_errors++;
dbg("(2+ dropped) rx packet_id mismatch 0x%x 0x%x", netdev_dbg(dev->net, "(2+ dropped) rx packet_id mismatch 0x%x 0x%x\n",
le16_to_cpu(header->packet_id), le16_to_cpu(header->packet_id),
le16_to_cpu(trailer->packet_id)); le16_to_cpu(trailer->packet_id));
return 0; return 0;
} }
#if 0 #if 0
......
...@@ -275,7 +275,7 @@ static int rtl8150_set_mac_address(struct net_device *netdev, void *p) ...@@ -275,7 +275,7 @@ static int rtl8150_set_mac_address(struct net_device *netdev, void *p)
return -EBUSY; return -EBUSY;
memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len); memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
dbg("%s: Setting MAC address to %pM\n", netdev->name, netdev->dev_addr); netdev_dbg(netdev, "Setting MAC address to %pM\n", netdev->dev_addr);
/* Set the IDR registers. */ /* Set the IDR registers. */
set_registers(dev, IDR, netdev->addr_len, netdev->dev_addr); set_registers(dev, IDR, netdev->addr_len, netdev->dev_addr);
#ifdef EEPROM_WRITE #ifdef EEPROM_WRITE
...@@ -503,12 +503,12 @@ static void intr_callback(struct urb *urb) ...@@ -503,12 +503,12 @@ static void intr_callback(struct urb *urb)
if ((d[INT_MSR] & MSR_LINK) == 0) { if ((d[INT_MSR] & MSR_LINK) == 0) {
if (netif_carrier_ok(dev->netdev)) { if (netif_carrier_ok(dev->netdev)) {
netif_carrier_off(dev->netdev); netif_carrier_off(dev->netdev);
dbg("%s: LINK LOST\n", __func__); netdev_dbg(dev->netdev, "%s: LINK LOST\n", __func__);
} }
} else { } else {
if (!netif_carrier_ok(dev->netdev)) { if (!netif_carrier_ok(dev->netdev)) {
netif_carrier_on(dev->netdev); netif_carrier_on(dev->netdev);
dbg("%s: LINK CAME BACK\n", __func__); netdev_dbg(dev->netdev, "%s: LINK CAME BACK\n", __func__);
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment