From: Andrew Morton total: 0 errors, 0 warnings, 15 lines checked Your patch has no obvious style problems and is ready for submission. Please run checkpatch prior to sending patches Cc: Alan Cox Cc: Jeff Garzik Cc: Tejun Heo Signed-off-by: Andrew Morton --- drivers/ata/libata-core.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff -puN drivers/ata/libata-core.c~libata-fix-early-use-of-port-printk-checkpatch-fixes drivers/ata/libata-core.c --- a/drivers/ata/libata-core.c~libata-fix-early-use-of-port-printk-checkpatch-fixes +++ a/drivers/ata/libata-core.c @@ -6964,7 +6964,9 @@ int ata_host_start(struct ata_host *host rc = ap->ops->port_start(ap); if (rc) { if (rc != -ENODEV) - dev_printk(KERN_ERR, host->dev, "failed to start port %d (errno=%d)\n", i, rc); + dev_printk(KERN_ERR, host->dev, + "failed to start port %d " + "(errno=%d)\n", i, rc); goto err_out; } } _