From: Andrew Morton 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 Signed-off-by: Andrew Morton --- drivers/usb/serial/io_ti.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 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 @@ -1086,11 +1086,11 @@ static int TIDownloadFirmware (struct ed if (serial->product_info.TiMode == TI_MODE_DOWNLOAD) { struct ti_i2c_desc *rom_desc; - dbg ("%s - <<<<<<<<<<<<<<>>>>>>>>>", __FUNCTION__); + dbg ("%s - RUNNING IN DOWNLOAD MODE", __FUNCTION__); status = TiValidateI2cImage (serial); if (status) { - dbg ("%s - <<<<<<<<<<<<<<>>>>>>>>>", + dbg ("%s - DOWNLOAD MODE -- BAD I2C", __FUNCTION__); return status; } @@ -1345,7 +1345,7 @@ static int TIDownloadFirmware (struct ed /********************************************************************/ /* Boot Mode */ /********************************************************************/ - dbg ("%s - <<<<<<<<<<<<<<>>>>>>>>>>>>>>", + dbg ("%s - RUNNING IN BOOT MODE", __FUNCTION__); // Configure the TI device so we can use the BULK pipes for download @@ -1461,7 +1461,7 @@ static int TIDownloadFirmware (struct ed StayInBootMode: // Eprom is invalid or blank stay in boot mode - dbg ("%s - <<<<<<<<<<<<<<>>>>>>>>>>>", __FUNCTION__); + dbg ("%s - STAYING IN BOOT MODE", __FUNCTION__); serial->product_info.TiMode = TI_MODE_BOOT; return 0; _