From: Andrew Morton <[EMAIL PROTECTED]>
These strings always come up as false positives whenever I'm doing
git-conflict fixups (ie: about 1000 times/day).
I don't think the zillion "<" and ">" characters are very useful and removing
them makes my life that little bit easier.
Cc: Greg KH <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
drivers/usb/serial/io_ti.c | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff -puN
drivers/usb/serial/io_ti.c~drivers-usb-serial-io_tic-remove-pointless-eye-candy-in-debug-statements
drivers/usb/serial/io_ti.c
---
a/drivers/usb/serial/io_ti.c~drivers-usb-serial-io_tic-remove-pointless-eye-candy-in-debug-statements
+++ a/drivers/usb/serial/io_ti.c
@@ -1087,12 +1087,11 @@ static int TIDownloadFirmware (struct ed
if (serial->product_info.TiMode == TI_MODE_DOWNLOAD) {
struct ti_i2c_desc *rom_desc;
- dbg ("%s - <<<<<<<<<<<<<<<RUNNING IN DOWNLOAD MODE>>>>>>>>>>",
__FUNCTION__);
+ dbg("%s - RUNNING IN DOWNLOAD MODE", __FUNCTION__);
status = TiValidateI2cImage (serial);
if (status) {
- dbg ("%s - <<<<<<<<<<<<<<<DOWNLOAD MODE -- BAD I2C
>>>>>>>>>>",
- __FUNCTION__);
+ dbg("%s - DOWNLOAD MODE -- BAD I2C", __FUNCTION__);
return status;
}
@@ -1346,8 +1345,7 @@ static int TIDownloadFirmware (struct ed
/********************************************************************/
/* Boot Mode */
/********************************************************************/
- dbg ("%s - <<<<<<<<<<<<<<<RUNNING IN BOOT MODE>>>>>>>>>>>>>>>",
- __FUNCTION__);
+ dbg("%s - RUNNING IN BOOT MODE", __FUNCTION__);
// Configure the TI device so we can use the BULK pipes for download
status = TIConfigureBootDevice (serial->serial->dev);
@@ -1462,7 +1460,7 @@ static int TIDownloadFirmware (struct ed
StayInBootMode:
// Eprom is invalid or blank stay in boot mode
- dbg ("%s - <<<<<<<<<<<<<<<STAYING IN BOOT MODE>>>>>>>>>>>>",
__FUNCTION__);
+ dbg("%s - STAYING IN BOOT MODE", __FUNCTION__);
serial->product_info.TiMode = TI_MODE_BOOT;
return 0;
_
-
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html