Browse Source

pata_imx: convert ata_dev_printk() to ata_dev_info()

Using ata_dev_info() instead of ata_dev_printk().

Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Wei Yongjun 12 years ago
parent
commit
22c8be3144
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/ata/pata_imx.c

+ 1 - 1
drivers/ata/pata_imx.c

@@ -60,7 +60,7 @@ static int pata_imx_set_mode(struct ata_link *link, struct ata_device **unused)
 			val &= ~PATA_IMX_ATA_CTRL_IORDY_EN;
 		__raw_writel(val, priv->host_regs + PATA_IMX_ATA_CONTROL);
 
-		ata_dev_printk(dev, KERN_INFO, "configured for PIO\n");
+		ata_dev_info(dev, "configured for PIO\n");
 	}
 	return 0;
 }