diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2012-07-16 12:32:23 +0200 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2012-09-29 15:56:03 +0200 |
commit | 92aeb5d20c188fc7c28d7a5895a6b2f56038a2bd (patch) | |
tree | 16de52e955b057c7a04f9bb44e994cf17e3acb3c /drivers/mtd/nand/s3c2410.c | |
parent | mtd: s3c2410: Use module_platform_driver() (diff) | |
download | linux-92aeb5d20c188fc7c28d7a5895a6b2f56038a2bd.tar.xz linux-92aeb5d20c188fc7c28d7a5895a6b2f56038a2bd.zip |
mtd: s3c2410: Use pr_* instead of printk
Use pr_* instead of printk.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd/nand/s3c2410.c')
-rw-r--r-- | drivers/mtd/nand/s3c2410.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/mtd/nand/s3c2410.c b/drivers/mtd/nand/s3c2410.c index 8f9267fe29fd..3021b174761f 100644 --- a/drivers/mtd/nand/s3c2410.c +++ b/drivers/mtd/nand/s3c2410.c @@ -21,6 +21,8 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#define pr_fmt(fmt) "nand-s3c2410: " fmt + #ifdef CONFIG_MTD_NAND_S3C2410_DEBUG #define DEBUG #endif @@ -215,7 +217,8 @@ static int s3c_nand_calc_rate(int wanted, unsigned long clk, int max) pr_debug("result %d from %ld, %d\n", result, clk, wanted); if (result > max) { - printk("%d ns is too big for current clock rate %ld\n", wanted, clk); + pr_err("%d ns is too big for current clock rate %ld\n", + wanted, clk); return -1; } |