diff mbox

Patch for /drivers/scsi/fnic/vnic_dev.c file

Message ID CAKx5OMZJUz+amr75A0v-oG6nycnasBqXNzNE9zHyUowJN-xatA@mail.gmail.com (mailing list archive)
State New, archived
Headers show

Commit Message

Vladimir Romanov March 16, 2015, 4:22 a.m. UTC
I am programmer from Kurgan, Russia, and this is my first attempt to
send some patch to linux kernel. Please review it, and if it is
acceptable, please commit it.

If there is some error, please, tell me, how i can solve it.

--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

--- a/drivers/scsi/fnic/vnic_dev.c
+++ b/drivers/scsi/fnic/vnic_dev.c
@@ -500,9 +500,8 @@ 
     err = vnic_dev_cmd(vdev, CMD_ADDR_ADD, &a0, &a1, wait);
     if (err)
         printk(KERN_ERR
-            "Can't add addr [%02x:%02x:%02x:%02x:%02x:%02x], %d\n",
-            addr[0], addr[1], addr[2], addr[3], addr[4], addr[5],
-            err);
+            "Can't add addr [%pM], %d\n",
+            addr, err);
 }

 void vnic_dev_del_addr(struct vnic_dev *vdev, u8 *addr)
@@ -518,9 +517,8 @@ 
     err = vnic_dev_cmd(vdev, CMD_ADDR_DEL, &a0, &a1, wait);
     if (err)
         printk(KERN_ERR
-            "Can't del addr [%02x:%02x:%02x:%02x:%02x:%02x], %d\n",
-            addr[0], addr[1], addr[2], addr[3], addr[4], addr[5],
-            err);
+            "Can't del addr [%pM], %d\n",
+            addr, err);
 }

 int vnic_dev_notify_set(struct vnic_dev *vdev, u16 intr)