ide: fix printk() levels in ide_dump_ata[pi]_error()

Fixes "<3>" in error messages like this one:

hdc: cdrom_decode_status: error=0x40 <3>{ LastFailedSense=0x04 }

Reported-by: Martin Lottermoser <Martin.Lottermoser@t-online.de>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>

+2 -2
+2 -2
drivers/ide/ide-lib.c
··· 91 91 92 92 static void ide_dump_ata_error(ide_drive_t *drive, u8 err) 93 93 { 94 - printk(KERN_ERR "{ "); 94 + printk(KERN_CONT "{ "); 95 95 if (err & ATA_ABORTED) 96 96 printk(KERN_CONT "DriveStatusError "); 97 97 if (err & ATA_ICRC) ··· 121 121 122 122 static void ide_dump_atapi_error(ide_drive_t *drive, u8 err) 123 123 { 124 - printk(KERN_ERR "{ "); 124 + printk(KERN_CONT "{ "); 125 125 if (err & ATAPI_ILI) 126 126 printk(KERN_CONT "IllegalLengthIndication "); 127 127 if (err & ATAPI_EOM)