Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 195948
b: refs/heads/master
c: eedfea2
h: refs/heads/master
v: v3
  • Loading branch information
Ben Dooks authored and David Woodhouse committed May 14, 2010
1 parent c20aba7 commit 6be071c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c3611570ddf601609f8803574ea83889ff969aa0
refs/heads/master: eedfea252690435858722a8da1109d104d639087
1 change: 1 addition & 0 deletions trunk/arch/arm/plat-orion/include/plat/orion_nand.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down
3 changes: 3 additions & 0 deletions trunk/drivers/mtd/nand/orion_nand.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)) {
Expand Down

0 comments on commit 6be071c

Please sign in to comment.