usb: storage: scsiglue: Remove SPRINTF macro use
Single transform macros with hidden arguments are not particularly useful. Just use seq_printf directly instead. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
3091fa77ff
commit
7d203a9e11
|
@ -456,17 +456,13 @@ static int write_info(struct Scsi_Host *host, char *buffer, int length)
|
||||||
return length;
|
return length;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* we use this macro to help us write into the buffer */
|
|
||||||
#undef SPRINTF
|
|
||||||
#define SPRINTF(args...) seq_printf(m, ## args)
|
|
||||||
|
|
||||||
static int show_info (struct seq_file *m, struct Scsi_Host *host)
|
static int show_info (struct seq_file *m, struct Scsi_Host *host)
|
||||||
{
|
{
|
||||||
struct us_data *us = host_to_us(host);
|
struct us_data *us = host_to_us(host);
|
||||||
const char *string;
|
const char *string;
|
||||||
|
|
||||||
/* print the controller name */
|
/* print the controller name */
|
||||||
SPRINTF(" Host scsi%d: usb-storage\n", host->host_no);
|
seq_printf(m, " Host scsi%d: usb-storage\n", host->host_no);
|
||||||
|
|
||||||
/* print product, vendor, and serial number strings */
|
/* print product, vendor, and serial number strings */
|
||||||
if (us->pusb_dev->manufacturer)
|
if (us->pusb_dev->manufacturer)
|
||||||
|
@ -475,26 +471,26 @@ static int show_info (struct seq_file *m, struct Scsi_Host *host)
|
||||||
string = us->unusual_dev->vendorName;
|
string = us->unusual_dev->vendorName;
|
||||||
else
|
else
|
||||||
string = "Unknown";
|
string = "Unknown";
|
||||||
SPRINTF(" Vendor: %s\n", string);
|
seq_printf(m, " Vendor: %s\n", string);
|
||||||
if (us->pusb_dev->product)
|
if (us->pusb_dev->product)
|
||||||
string = us->pusb_dev->product;
|
string = us->pusb_dev->product;
|
||||||
else if (us->unusual_dev->productName)
|
else if (us->unusual_dev->productName)
|
||||||
string = us->unusual_dev->productName;
|
string = us->unusual_dev->productName;
|
||||||
else
|
else
|
||||||
string = "Unknown";
|
string = "Unknown";
|
||||||
SPRINTF(" Product: %s\n", string);
|
seq_printf(m, " Product: %s\n", string);
|
||||||
if (us->pusb_dev->serial)
|
if (us->pusb_dev->serial)
|
||||||
string = us->pusb_dev->serial;
|
string = us->pusb_dev->serial;
|
||||||
else
|
else
|
||||||
string = "None";
|
string = "None";
|
||||||
SPRINTF("Serial Number: %s\n", string);
|
seq_printf(m, "Serial Number: %s\n", string);
|
||||||
|
|
||||||
/* show the protocol and transport */
|
/* show the protocol and transport */
|
||||||
SPRINTF(" Protocol: %s\n", us->protocol_name);
|
seq_printf(m, " Protocol: %s\n", us->protocol_name);
|
||||||
SPRINTF(" Transport: %s\n", us->transport_name);
|
seq_printf(m, " Transport: %s\n", us->transport_name);
|
||||||
|
|
||||||
/* show the device flags */
|
/* show the device flags */
|
||||||
SPRINTF(" Quirks:");
|
seq_printf(m, " Quirks:");
|
||||||
|
|
||||||
#define US_FLAG(name, value) \
|
#define US_FLAG(name, value) \
|
||||||
if (us->fflags & value) seq_printf(m, " " #name);
|
if (us->fflags & value) seq_printf(m, " " #name);
|
||||||
|
|
Loading…
Reference in New Issue