]> Pileus Git - ~andy/linux/commitdiff
rtc: rtc-ds1307: use dev_dbg() instead of pr_debug()
authorJingoo Han <jg1.han@samsung.com>
Mon, 29 Apr 2013 23:19:28 +0000 (16:19 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 30 Apr 2013 01:28:28 +0000 (18:28 -0700)
dev_dbg() is preferred to pr_debug().

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/rtc/rtc-ds1307.c

index a65621c42170e99748021c7d835563eac90a63dc..b859d3c67f111726864a51f13913602fcb93293c 100644 (file)
@@ -713,7 +713,7 @@ static int ds1307_probe(struct i2c_client *client,
                tmp = ds1307->read_block_data(ds1307->client,
                                DS1337_REG_CONTROL, 2, buf);
                if (tmp != 2) {
-                       pr_debug("read error %d\n", tmp);
+                       dev_dbg(&client->dev, "read error %d\n", tmp);
                        err = -EIO;
                        goto exit_free;
                }
@@ -752,7 +752,7 @@ static int ds1307_probe(struct i2c_client *client,
                tmp = i2c_smbus_read_i2c_block_data(ds1307->client,
                                RX8025_REG_CTRL1 << 4 | 0x08, 2, buf);
                if (tmp != 2) {
-                       pr_debug("read error %d\n", tmp);
+                       dev_dbg(&client->dev, "read error %d\n", tmp);
                        err = -EIO;
                        goto exit_free;
                }
@@ -796,7 +796,7 @@ static int ds1307_probe(struct i2c_client *client,
                        tmp = i2c_smbus_read_i2c_block_data(ds1307->client,
                                        RX8025_REG_CTRL1 << 4 | 0x08, 2, buf);
                        if (tmp != 2) {
-                               pr_debug("read error %d\n", tmp);
+                               dev_dbg(&client->dev, "read error %d\n", tmp);
                                err = -EIO;
                                goto exit_free;
                        }
@@ -824,7 +824,7 @@ read_rtc:
        /* read RTC registers */
        tmp = ds1307->read_block_data(ds1307->client, ds1307->offset, 8, buf);
        if (tmp != 8) {
-               pr_debug("read error %d\n", tmp);
+               dev_dbg(&client->dev, "read error %d\n", tmp);
                err = -EIO;
                goto exit_free;
        }
@@ -866,7 +866,7 @@ read_rtc:
 
                tmp = i2c_smbus_read_byte_data(client, DS1340_REG_FLAG);
                if (tmp < 0) {
-                       pr_debug("read error %d\n", tmp);
+                       dev_dbg(&client->dev, "read error %d\n", tmp);
                        err = -EIO;
                        goto exit_free;
                }