summaryrefslogtreecommitdiffstats
path: root/drivers/mtd/devices/m25p80.c
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2013-01-27 11:22:29 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2013-01-27 14:23:09 +0100
commitea53e1b5724d78bc6e5cf49d48bf33bdef74faa5 (patch)
tree1f1ca7a7ad0a3c6a81fc70d3fd1257f9a962e28b /drivers/mtd/devices/m25p80.c
parentb537a772c25ed07126d1264f01bc25f8991a3234 (diff)
downloadbarebox-ea53e1b5724d78bc6e5cf49d48bf33bdef74faa5.tar.gz
barebox-ea53e1b5724d78bc6e5cf49d48bf33bdef74faa5.tar.xz
mtd m25p80: consistenly switch to dev_* messages
Also, fix variable names in m25p80_write debug message. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers/mtd/devices/m25p80.c')
-rw-r--r--drivers/mtd/devices/m25p80.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/drivers/mtd/devices/m25p80.c b/drivers/mtd/devices/m25p80.c
index 428d126ddd..55b1020390 100644
--- a/drivers/mtd/devices/m25p80.c
+++ b/drivers/mtd/devices/m25p80.c
@@ -408,7 +408,8 @@ static int m25p80_write(struct mtd_info *mtd, loff_t to, size_t len,
struct spi_transfer t[2];
struct spi_message m;
- debug("m25p80_write %ld bytes at 0x%08lX\n", (unsigned long)count, offset);
+ dev_dbg(&flash->spi->dev, "m25p80_write %ld bytes at 0x%08llx\n",
+ (unsigned long)len, to);
spi_message_init(&m);
memset(t, 0, (sizeof t));
@@ -484,7 +485,7 @@ static int sst_write(struct mtd_info *mtd, loff_t to, size_t len,
size_t actual;
int cmd_sz, ret;
- pr_debug("%s: %s to 0x%08x, len %zd\n", dev_name(&flash->spi->dev),
+ dev_dbg(&flash->spi->dev, "%s to 0x%08x, len %zd\n",
__func__, (u32)to, len);
spi_message_init(&m);
@@ -767,7 +768,7 @@ static const struct spi_device_id *jedec_probe(struct spi_device *spi)
*/
tmp = spi_write_then_read(spi, &code, 1, id, 5);
if (tmp < 0) {
- pr_debug("%s: error %d reading JEDEC ID\n",
+ dev_dbg(&spi->dev, "%s: error %d reading JEDEC ID\n",
dev_name(&spi->dev), tmp);
return ERR_PTR(tmp);
}
@@ -923,7 +924,7 @@ static int m25p_probe(struct device_d *dev)
dev_info(dev, "%s (%lld Kbytes)\n", id->name,
(long long)flash->mtd.size >> 10);
- pr_debug("mtd .name = %s, .size = 0x%llx (%lldMiB) "
+ dev_dbg(dev, "mtd .name = %s, .size = 0x%llx (%lldMiB) "
".erasesize = 0x%.8x (%uKiB) .numeraseregions = %d\n",
flash->mtd.name,
(long long)flash->mtd.size, (long long)(flash->mtd.size >> 20),
@@ -932,7 +933,7 @@ static int m25p_probe(struct device_d *dev)
if (flash->mtd.numeraseregions)
for (i = 0; i < flash->mtd.numeraseregions; i++)
- pr_debug("mtd.eraseregions[%d] = { .offset = 0x%llx, "
+ dev_dbg(dev, "mtd.eraseregions[%d] = { .offset = 0x%llx, "
".erasesize = 0x%.8x (%uKiB), "
".numblocks = %d }\n",
i, (long long)flash->mtd.eraseregions[i].offset,