diff options
| author | Marek Vasut <[email protected]> | 2012-08-28 15:12:48 +0000 |
|---|---|---|
| committer | Stefano Babic <[email protected]> | 2012-09-04 11:57:56 +0200 |
| commit | c16ecb09088f303cb36fd3c55108857cdf934b98 (patch) | |
| tree | 19af4ab2ccc8e4ce0f6b86e27582d435f480b006 /include | |
| parent | ddfcc810d3947a085fb85cefcb6cb04c723eadf9 (diff) | |
M28: Fix the use of gpmi-nand in mtdparts
The mtd name of the NAND in Linux is "gpmi-nand", not "gpmi-nand.0" as
it would be expected, since the controller doesn't support multiple NANDs
attached to it as of now. Rectify this flub by adjusting default mtdparts.
Signed-off-by: Marek Vasut <[email protected]>
Cc: Fabio Estevam <[email protected]>
Cc: Stefano Babic <[email protected]>
Cc: Otavio Salvador <[email protected]>
Acked-by: Stefano Babic <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/m28evk.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/configs/m28evk.h b/include/configs/m28evk.h index d0f2b481d51..9eb2a547fc4 100644 --- a/include/configs/m28evk.h +++ b/include/configs/m28evk.h @@ -171,9 +171,9 @@ #define CONFIG_LZO #define CONFIG_MTD_DEVICE #define CONFIG_MTD_PARTITIONS -#define MTDIDS_DEFAULT "nand0=gpmi-nand.0" +#define MTDIDS_DEFAULT "nand0=gpmi-nand" #define MTDPARTS_DEFAULT \ - "mtdparts=gpmi-nand.0:" \ + "mtdparts=gpmi-nand:" \ "3m(bootloader)ro," \ "512k(environment)," \ "512k(redundant-environment)," \ |
