mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-07 04:09:21 +00:00
[libata] pata_at91: fix backslash-continued string
Noticed and rough patch by Joe Perches. Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
This commit is contained in:
parent
460f531846
commit
429e3861f9
1 changed files with 2 additions and 2 deletions
|
@ -153,8 +153,8 @@ static void pata_at91_set_piomode(struct ata_port *ap, struct ata_device *adev)
|
|||
/* Compute ATA timing and set it to SMC */
|
||||
ret = ata_timing_compute(adev, adev->pio_mode, &timing, 1000, 0);
|
||||
if (ret) {
|
||||
dev_warn(ap->dev, "Failed to compute ATA timing %d, \
|
||||
set PIO_0 timing\n", ret);
|
||||
dev_warn(ap->dev, "Failed to compute ATA timing %d, "
|
||||
"set PIO_0 timing\n", ret);
|
||||
set_smc_timing(ap->dev, info, &initial_timing);
|
||||
} else {
|
||||
set_smc_timing(ap->dev, info, &timing);
|
||||
|
|
Loading…
Reference in a new issue