Skip to content

Commit

Permalink
[MTD] [NAND] Fix checkpatch warnings which showed up when atmel_nand.…
Browse files Browse the repository at this point in the history
…c moved

Some of them, at least.

Signed-off-by: David Woodhouse <dwmw2@infradead.org>
  • Loading branch information
David Woodhouse committed Jun 7, 2008
1 parent e150d6e commit 90574d0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/mtd/nand/atmel_nand.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
#include <linux/mtd/nand.h>
#include <linux/mtd/partitions.h>

#include <asm/gpio.h>
#include <asm/io.h>
#include <linux/gpio.h>
#include <linux/io.h>

#include <asm/arch/board.h>

Expand Down Expand Up @@ -444,7 +444,7 @@ static int __init atmel_nand_probe(struct platform_device *pdev)

if (host->board->det_pin) {
if (gpio_get_value(host->board->det_pin)) {
printk ("No SmartMedia card inserted.\n");
printk("No SmartMedia card inserted.\n");
res = ENXIO;
goto err_no_card;
}
Expand Down

0 comments on commit 90574d0

Please sign in to comment.