diff options
author | Joe Perches <joe@perches.com> | 2013-04-19 14:44:00 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-04-19 14:46:50 -0400 |
commit | 191648d03d20229523d9a75b8abef56421298d28 (patch) | |
tree | 2de4891a95fe1d2ee4b8326bb9834033b763d37e /drivers/usb/storage/karma.c | |
parent | f1175daa5312dd1b3f5940413c7c41ed195066f7 (diff) |
usb: storage: Convert US_DEBUGP to usb_stor_dbg
Use a more current logging style with dev_printk
where possible.
o Convert uses of US_DEBUGP to usb_stor_dbg
o Add "struct us_data *" to usb_stor_dbg uses
o usb_stor_dbg now uses struct device */dev_vprint_emit
o Removed embedded function names
o Coalesce formats
o Remove trailing whitespace
o Remove useless OOM messages
o Remove useless function entry/exit logging
o Convert some US_DEBUGP uses to dev_info and dev_dbg
Object size is slightly reduced when debugging
is enabled, slightly increased with no debugging
because some initialization and removal messages
are now always emitted.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/storage/karma.c')
-rw-r--r-- | drivers/usb/storage/karma.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/usb/storage/karma.c b/drivers/usb/storage/karma.c index f085ffb606c8..94d16ee5e84b 100644 --- a/drivers/usb/storage/karma.c +++ b/drivers/usb/storage/karma.c | |||
@@ -106,7 +106,7 @@ static int rio_karma_send_command(char cmd, struct us_data *us) | |||
106 | static unsigned char seq = 1; | 106 | static unsigned char seq = 1; |
107 | struct karma_data *data = (struct karma_data *) us->extra; | 107 | struct karma_data *data = (struct karma_data *) us->extra; |
108 | 108 | ||
109 | US_DEBUGP("karma: sending command %04x\n", cmd); | 109 | usb_stor_dbg(us, "sending command %04x\n", cmd); |
110 | memset(us->iobuf, 0, RIO_SEND_LEN); | 110 | memset(us->iobuf, 0, RIO_SEND_LEN); |
111 | memcpy(us->iobuf, RIO_PREFIX, RIO_PREFIX_LEN); | 111 | memcpy(us->iobuf, RIO_PREFIX, RIO_PREFIX_LEN); |
112 | us->iobuf[5] = cmd; | 112 | us->iobuf[5] = cmd; |
@@ -139,10 +139,10 @@ static int rio_karma_send_command(char cmd, struct us_data *us) | |||
139 | if (seq == 0) | 139 | if (seq == 0) |
140 | seq = 1; | 140 | seq = 1; |
141 | 141 | ||
142 | US_DEBUGP("karma: sent command %04x\n", cmd); | 142 | usb_stor_dbg(us, "sent command %04x\n", cmd); |
143 | return 0; | 143 | return 0; |
144 | err: | 144 | err: |
145 | US_DEBUGP("karma: command %04x failed\n", cmd); | 145 | usb_stor_dbg(us, "command %04x failed\n", cmd); |
146 | return USB_STOR_TRANSPORT_FAILED; | 146 | return USB_STOR_TRANSPORT_FAILED; |
147 | } | 147 | } |
148 | 148 | ||