]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
staging: vt6656: mac80211 conversion: device_alloc_bufs use dev_err
authorMalcolm Priestley <tvboxspy@gmail.com>
Wed, 25 Jun 2014 20:14:37 +0000 (21:14 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 27 Jun 2014 00:21:20 +0000 (20:21 -0400)
priv->dev->name is now null change to dev_err

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6656/main_usb.c

index ee63390b980b2c7c76af45d8b4d7a9f127e51837..5cc3d42c7e4afb0b013d3339228cfac453a55946 100644 (file)
@@ -650,9 +650,8 @@ static bool device_alloc_bufs(struct vnt_private *priv)
                tx_context = kmalloc(sizeof(struct vnt_usb_send_context),
                                                                GFP_KERNEL);
                if (tx_context == NULL) {
-                       DBG_PRT(MSG_LEVEL_ERR, KERN_ERR
-                               "%s : allocate tx usb context failed\n",
-                                       priv->dev->name);
+                       dev_err(&priv->usb->dev,
+                                       "allocate tx usb context failed\n");
                        goto free_tx;
                }
 
@@ -674,9 +673,7 @@ static bool device_alloc_bufs(struct vnt_private *priv)
        priv->pRCBMem = kzalloc((sizeof(struct vnt_rcb) * priv->cbRD),
                                                                GFP_KERNEL);
        if (priv->pRCBMem == NULL) {
-               DBG_PRT(MSG_LEVEL_ERR, KERN_ERR
-                       "%s : alloc rx usb context failed\n",
-                               priv->dev->name);
+               dev_err(&priv->usb->dev, "alloc rx usb context failed\n");
                goto free_tx;
        }