]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
mtd: s3c2410: Use pr_* instead of printk
authorSachin Kamat <sachin.kamat@linaro.org>
Mon, 16 Jul 2012 10:32:23 +0000 (16:02 +0530)
committerArtem Bityutskiy <artem.bityutskiy@linux.intel.com>
Sun, 23 Sep 2012 13:56:00 +0000 (16:56 +0300)
Use pr_* instead of printk.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
drivers/mtd/nand/s3c2410.c

index 8f9267fe29fd29833c0a70b51f4660942ddbf6f5..3021b174761fdd7e5516f26bfc01b9663eed8450 100644 (file)
@@ -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;
        }