]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
scsi: dc395x: Use %*ph to print small buffer
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Thu, 30 Jul 2020 15:35:35 +0000 (18:35 +0300)
committerMartin K. Petersen <martin.petersen@oracle.com>
Fri, 21 Aug 2020 03:28:14 +0000 (23:28 -0400)
Use %*ph format to print small buffer as hex string.

Link: https://lore.kernel.org/r/20200730153535.39691-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/dc395x.c

index 37c6cc374079b8ab7de666aa59274fdfc21e5c83..434758dde9b464f85f82ee16a0fa9a117024c0e5 100644 (file)
@@ -4504,14 +4504,8 @@ static int dc395x_show_info(struct seq_file *m, struct Scsi_Host *host)
        /*seq_printf(m, "\n"); */
 
        seq_printf(m, "Nr of DCBs: %i\n", list_size(&acb->dcb_list));
-       seq_printf(m, "Map of attached LUNs: %02x %02x %02x %02x %02x %02x %02x %02x\n",
-            acb->dcb_map[0], acb->dcb_map[1], acb->dcb_map[2],
-            acb->dcb_map[3], acb->dcb_map[4], acb->dcb_map[5],
-            acb->dcb_map[6], acb->dcb_map[7]);
-       seq_printf(m, "                      %02x %02x %02x %02x %02x %02x %02x %02x\n",
-            acb->dcb_map[8], acb->dcb_map[9], acb->dcb_map[10],
-            acb->dcb_map[11], acb->dcb_map[12], acb->dcb_map[13],
-            acb->dcb_map[14], acb->dcb_map[15]);
+       seq_printf(m, "Map of attached LUNs: %8ph\n", &acb->dcb_map[0]);
+       seq_printf(m, "                      %8ph\n", &acb->dcb_map[8]);
 
        seq_puts(m,
                 "Un ID LUN Prty Sync Wide DsCn SndS TagQ nego_period SyncFreq SyncOffs MaxCmd\n");