diff options
author | Ben Dooks <ben@simtec.co.uk> | 2005-10-10 06:27:05 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@mtd.linutronix.de> | 2005-11-06 17:10:43 -0500 |
commit | d574504114753f52d8d2a8a0f186d2a5fcd80789 (patch) | |
tree | 371ccf1b48141d81425e044e04204efa00b694d5 /drivers | |
parent | df2e162927b7af36d669f0ade81c17036c4001d4 (diff) |
[MTD] NAND s3c2410.c: Fix missing dev parameter to dev_err
Signed-off-by: Ben Dooks <ben@simtec.co.uk>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mtd/nand/s3c2410.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/nand/s3c2410.c b/drivers/mtd/nand/s3c2410.c index a44458fd422f..41f2078225a5 100644 --- a/drivers/mtd/nand/s3c2410.c +++ b/drivers/mtd/nand/s3c2410.c | |||
@@ -18,7 +18,7 @@ | |||
18 | * 20-Jun-2005 BJD Updated s3c2440 support, fixed timing bug | 18 | * 20-Jun-2005 BJD Updated s3c2440 support, fixed timing bug |
19 | * 08-Jul-2005 BJD Fix OOPS when no platform data supplied | 19 | * 08-Jul-2005 BJD Fix OOPS when no platform data supplied |
20 | * | 20 | * |
21 | * $Id: s3c2410.c,v 1.16 2005/10/10 00:09:16 bjd Exp $ | 21 | * $Id: s3c2410.c,v 1.17 2005/10/10 10:27:02 bjd Exp $ |
22 | * | 22 | * |
23 | * This program is free software; you can redistribute it and/or modify | 23 | * This program is free software; you can redistribute it and/or modify |
24 | * it under the terms of the GNU General Public License as published by | 24 | * it under the terms of the GNU General Public License as published by |
@@ -576,7 +576,7 @@ static int s3c24xx_nand_probe(struct device *dev, int is_s3c2440) | |||
576 | 576 | ||
577 | info = kmalloc(sizeof(*info), GFP_KERNEL); | 577 | info = kmalloc(sizeof(*info), GFP_KERNEL); |
578 | if (info == NULL) { | 578 | if (info == NULL) { |
579 | dev_err("no memory for flash info\n"); | 579 | dev_err(dev, "no memory for flash info\n"); |
580 | err = -ENOMEM; | 580 | err = -ENOMEM; |
581 | goto exit_error; | 581 | goto exit_error; |
582 | } | 582 | } |