Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8d9ae994d8fce807fc90fb8e3b6ac8df1cc7dce6
Commit:     8d9ae994d8fce807fc90fb8e3b6ac8df1cc7dce6
Parent:     658e81701970a82d33f46241f20be416ebd5e930
Author:     Josh Boyer <[EMAIL PROTECTED]>
AuthorDate: Sat Sep 15 04:54:12 2007 +1000
Committer:  Josh Boyer <[EMAIL PROTECTED]>
CommitDate: Wed Sep 19 21:13:16 2007 -0500

    [POWERPC] Make partitions optional in physmap_of
    
    The latest physmap_of driver has a small error where it will fail the probe
    with:
    
    physmap-flash: probe of fff00000.small-flas failed with error -2
    
    if there are no partition subnodes in the device tree and the old style 
binding
    is not used.  Since partition definitions are optional, the probe should 
still
    succeed.
    
    Signed-off-by: Josh Boyer <[EMAIL PROTECTED]>
    Acked-by: David Gibson <[EMAIL PROTECTED]>
---
 drivers/mtd/maps/physmap_of.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/drivers/mtd/maps/physmap_of.c b/drivers/mtd/maps/physmap_of.c
index 3df001b..096dd47 100644
--- a/drivers/mtd/maps/physmap_of.c
+++ b/drivers/mtd/maps/physmap_of.c
@@ -142,6 +142,8 @@ static int __devinit process_partitions(struct 
physmap_flash_info *info,
                }
        } else {
                nr_parts = parse_obsolete_partitions(dev, info, dp);
+               if (nr_parts == -ENOENT)
+                       nr_parts = 0;
        }
 
        if (nr_parts < 0)
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to