static DECLARE_TRANSPORT_CLASS(srp_rport_class, "srp_remote_ports",
                               NULL, NULL, NULL);
 
-#define SRP_PID(p) \
-       (p)->port_id[0], (p)->port_id[1], (p)->port_id[2], (p)->port_id[3], \
-       (p)->port_id[4], (p)->port_id[5], (p)->port_id[6], (p)->port_id[7], \
-       (p)->port_id[8], (p)->port_id[9], (p)->port_id[10], (p)->port_id[11], \
-       (p)->port_id[12], (p)->port_id[13], (p)->port_id[14], (p)->port_id[15]
-
-#define SRP_PID_FMT "%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x:" \
-       "%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x"
-
 static ssize_t
 show_srp_rport_id(struct device *dev, struct device_attribute *attr,
                  char *buf)
 {
        struct srp_rport *rport = transport_class_to_srp_rport(dev);
-       return sprintf(buf, SRP_PID_FMT "\n", SRP_PID(rport));
+       return sprintf(buf, "%16phC\n", rport->port_id);
 }
 
 static DEVICE_ATTR(port_id, S_IRUGO, show_srp_rport_id, NULL);
 
                if (sdkp->first_scan || old_wp != sdkp->write_prot) {
                        sd_printk(KERN_NOTICE, sdkp, "Write Protect is %s\n",
                                  sdkp->write_prot ? "on" : "off");
-                       sd_printk(KERN_DEBUG, sdkp,
-                                 "Mode Sense: %02x %02x %02x %02x\n",
-                                 buffer[0], buffer[1], buffer[2], buffer[3]);
+                       sd_printk(KERN_DEBUG, sdkp, "Mode Sense: %4ph\n", buffer);
                }
        }
 }