aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/atm/usbatm.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/usb/atm/usbatm.c')
-rw-r--r--drivers/usb/atm/usbatm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/usb/atm/usbatm.c b/drivers/usb/atm/usbatm.c
index 35f10bfe15db..d3527dd8b90c 100644
--- a/drivers/usb/atm/usbatm.c
+++ b/drivers/usb/atm/usbatm.c
@@ -672,9 +672,6 @@ static int usbatm_atm_send(struct atm_vcc *vcc, struct sk_buff *skb)
672 struct usbatm_control *ctrl = UDSL_SKB(skb); 672 struct usbatm_control *ctrl = UDSL_SKB(skb);
673 int err; 673 int err;
674 674
675 vdbg(&instance->usb_intf->dev, "%s called (skb 0x%p, len %u)", __func__,
676 skb, skb->len);
677
678 /* racy disconnection check - fine */ 675 /* racy disconnection check - fine */
679 if (!instance || instance->disconnected) { 676 if (!instance || instance->disconnected) {
680#ifdef DEBUG 677#ifdef DEBUG
@@ -684,6 +681,9 @@ static int usbatm_atm_send(struct atm_vcc *vcc, struct sk_buff *skb)
684 goto fail; 681 goto fail;
685 } 682 }
686 683
684 vdbg(&instance->usb_intf->dev, "%s called (skb 0x%p, len %u)", __func__,
685 skb, skb->len);
686
687 if (vcc->qos.aal != ATM_AAL5) { 687 if (vcc->qos.aal != ATM_AAL5) {
688 atm_rldbg(instance, "%s: unsupported ATM type %d!\n", __func__, vcc->qos.aal); 688 atm_rldbg(instance, "%s: unsupported ATM type %d!\n", __func__, vcc->qos.aal);
689 err = -EINVAL; 689 err = -EINVAL;