aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/spi/mpc52xx_psc_spi.c
diff options
context:
space:
mode:
authorWolfram Sang <w.sang@pengutronix.de>2009-11-03 18:49:20 -0500
committerGrant Likely <grant.likely@secretlab.ca>2009-11-04 18:42:47 -0500
commit5cc17d7e01abd77eda1267a75748cfc84c92a523 (patch)
tree26df0a4f123316062cd126961827dc7aa4419c3e /drivers/spi/mpc52xx_psc_spi.c
parent1a8d3b777dd71813b87c66c0eb161cc87f042126 (diff)
spi/mpc52xx: replace printk with dev_err
To easily identify which device has problems. Signed-off-by: Wolfram Sang <w.sang@pengutronix.de> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'drivers/spi/mpc52xx_psc_spi.c')
-rw-r--r--drivers/spi/mpc52xx_psc_spi.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/spi/mpc52xx_psc_spi.c b/drivers/spi/mpc52xx_psc_spi.c
index 2193d908cad6..f50c81df336a 100644
--- a/drivers/spi/mpc52xx_psc_spi.c
+++ b/drivers/spi/mpc52xx_psc_spi.c
@@ -473,7 +473,7 @@ static int __init mpc52xx_psc_spi_of_probe(struct of_device *op,
473 473
474 regaddr_p = of_get_address(op->node, 0, &size64, NULL); 474 regaddr_p = of_get_address(op->node, 0, &size64, NULL);
475 if (!regaddr_p) { 475 if (!regaddr_p) {
476 printk(KERN_ERR "Invalid PSC address\n"); 476 dev_err(&op->dev, "Invalid PSC address\n");
477 return -EINVAL; 477 return -EINVAL;
478 } 478 }
479 regaddr64 = of_translate_address(op->node, regaddr_p); 479 regaddr64 = of_translate_address(op->node, regaddr_p);
@@ -484,8 +484,7 @@ static int __init mpc52xx_psc_spi_of_probe(struct of_device *op,
484 484
485 psc_nump = of_get_property(op->node, "cell-index", NULL); 485 psc_nump = of_get_property(op->node, "cell-index", NULL);
486 if (!psc_nump || *psc_nump > 5) { 486 if (!psc_nump || *psc_nump > 5) {
487 printk(KERN_ERR "mpc52xx_psc_spi: Device node %s has invalid " 487 dev_err(&op->dev, "Invalid cell-index property\n");
488 "cell-index property\n", op->node->full_name);
489 return -EINVAL; 488 return -EINVAL;
490 } 489 }
491 id = *psc_nump + 1; 490 id = *psc_nump + 1;