i2c: s3c2410: modify dev_info to dev_dbg
authorYoungmin Nam <youngmin.nam@samsung.com>
Tue, 25 Aug 2015 02:11:04 +0000 (11:11 +0900)
committermyung-su.cha <myung-su.cha@samsung.com>
Thu, 10 May 2018 04:40:54 +0000 (13:40 +0900)
Change-Id: I1c07c3a517d9765f7911a83c9ecf0f205350b464
Signed-off-by: Youngmin Nam <youngmin.nam@samsung.com>
drivers/i2c/busses/i2c-s3c2410.c

index 5fc56a2048bfe36d3df2aee23a76694f0be2e400..da853a1d094e2f5542232a4e4fbba450a0b50a67 100644 (file)
@@ -1075,7 +1075,7 @@ static int s3c24xx_i2c_init(struct s3c24xx_i2c *i2c)
        /* write slave address */
        writeb(pdata->slave_addr, i2c->regs + S3C2410_IICADD);
 
-       dev_info(i2c->dev, "slave address 0x%02x\n", pdata->slave_addr);
+       dev_dbg(i2c->dev, "slave address 0x%02x\n", pdata->slave_addr);
 
        writel(0, i2c->regs + S3C2410_IICCON);
        writel(0, i2c->regs + S3C2410_IICSTAT);
@@ -1089,7 +1089,7 @@ static int s3c24xx_i2c_init(struct s3c24xx_i2c *i2c)
 
        /* todo - check that the i2c lines aren't being dragged anywhere */
 
-       dev_info(i2c->dev, "bus frequency set to %d KHz\n", freq);
+       dev_dbg(i2c->dev, "bus frequency set to %d KHz\n", freq);
        dev_dbg(i2c->dev, "S3C2410_IICCON=0x%02x\n",
                readl(i2c->regs + S3C2410_IICCON));