Commit f9068876 authored by David Woodhouse's avatar David Woodhouse

[MTD NAND] Fix s3c2410 NAND driver so it at least _looks_ like it compiles

Fix the control bit handling so it even looks like it might work, too.
Bad tglx. No biscuit.
Signed-off-by: default avatarDavid Woodhouse <dwmw2@infradead.org>
parent f24ff6bf
...@@ -256,7 +256,7 @@ static void s3c2410_nand_select_chip(struct mtd_info *mtd, int chip) ...@@ -256,7 +256,7 @@ static void s3c2410_nand_select_chip(struct mtd_info *mtd, int chip)
*/ */
static void s3c2410_nand_hwcontrol(struct mtd_info *mtd, int cmd, static void s3c2410_nand_hwcontrol(struct mtd_info *mtd, int cmd,
unsigend int ctrl) unsigned int ctrl)
{ {
struct s3c2410_nand_info *info = s3c2410_nand_mtd_toinfo(mtd); struct s3c2410_nand_info *info = s3c2410_nand_mtd_toinfo(mtd);
struct nand_chip *chip = mtd->priv; struct nand_chip *chip = mtd->priv;
...@@ -264,7 +264,7 @@ static void s3c2410_nand_hwcontrol(struct mtd_info *mtd, int cmd, ...@@ -264,7 +264,7 @@ static void s3c2410_nand_hwcontrol(struct mtd_info *mtd, int cmd,
if (cmd == NAND_CMD_NONE) if (cmd == NAND_CMD_NONE)
return; return;
if (cmd & NAND_CLE) if (ctrl & NAND_CLE)
writeb(cmd, info->regs + S3C2410_NFCMD); writeb(cmd, info->regs + S3C2410_NFCMD);
else else
writeb(cmd, info->regs + S3C2410_NFADDR); writeb(cmd, info->regs + S3C2410_NFADDR);
...@@ -272,8 +272,8 @@ static void s3c2410_nand_hwcontrol(struct mtd_info *mtd, int cmd, ...@@ -272,8 +272,8 @@ static void s3c2410_nand_hwcontrol(struct mtd_info *mtd, int cmd,
/* command and control functions */ /* command and control functions */
static void s3c2410_nand_hwcontrol(struct mtd_info *mtd, int cmd, static void s3c2440_nand_hwcontrol(struct mtd_info *mtd, int cmd,
unsigend int ctrl) unsigned int ctrl)
{ {
struct s3c2410_nand_info *info = s3c2410_nand_mtd_toinfo(mtd); struct s3c2410_nand_info *info = s3c2410_nand_mtd_toinfo(mtd);
struct nand_chip *chip = mtd->priv; struct nand_chip *chip = mtd->priv;
...@@ -281,7 +281,7 @@ static void s3c2410_nand_hwcontrol(struct mtd_info *mtd, int cmd, ...@@ -281,7 +281,7 @@ static void s3c2410_nand_hwcontrol(struct mtd_info *mtd, int cmd,
if (cmd == NAND_CMD_NONE) if (cmd == NAND_CMD_NONE)
return; return;
if (cmd & NAND_CLE) if (ctrl & NAND_CLE)
writeb(cmd, info->regs + S3C2440_NFCMD); writeb(cmd, info->regs + S3C2440_NFCMD);
else else
writeb(cmd, info->regs + S3C2440_NFADDR); writeb(cmd, info->regs + S3C2440_NFADDR);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment