mtd: orion/kirkwood: add RnB line support to orion mtd driver
authorBen Dooks <ben@simtec.co.uk>
Tue, 20 Apr 2010 09:26:18 +0000 (10:26 +0100)
committerDavid Woodhouse <David.Woodhouse@intel.com>
Fri, 14 May 2010 00:04:19 +0000 (01:04 +0100)
Add support for a board to register a callback to get the state of the
RnB line if it has it attached.

Signed-off-by: Ben Dooks <ben@simtec.co.uk>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
arch/arm/plat-orion/include/plat/orion_nand.h
drivers/mtd/nand/orion_nand.c

index d6a4cfa..9f3c180 100644 (file)
@@ -14,6 +14,7 @@
  */
 struct orion_nand_data {
        struct mtd_partition *parts;
+       int (*dev_ready)(struct mtd_info *mtd);
        u32 nr_parts;
        u8 ale;         /* address line number connected to ALE */
        u8 cle;         /* address line number connected to CLE */
index f4444fe..da6e753 100644 (file)
@@ -126,6 +126,9 @@ static int __init orion_nand_probe(struct platform_device *pdev)
        if (board->width == 16)
                nc->options |= NAND_BUSWIDTH_16;
 
+       if (board->dev_ready)
+               nc->dev_ready = board->dev_ready;
+
        platform_set_drvdata(pdev, mtd);
 
        if (nand_scan(mtd, 1)) {