diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-04-29 07:36:35 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2012-04-29 07:36:35 +0000 |
commit | a1a0f677489c03da2024f7e0e8d3bd3bf12de8b5 (patch) | |
tree | 4bdb38c33b18348d8da0f79587c353d03cd48763 /target | |
parent | 8e06682fb7e6311d7a1af6e32e787cd645290e20 (diff) | |
download | upstream-a1a0f677489c03da2024f7e0e8d3bd3bf12de8b5.tar.gz upstream-a1a0f677489c03da2024f7e0e8d3bd3bf12de8b5.tar.bz2 upstream-a1a0f677489c03da2024f7e0e8d3bd3bf12de8b5.zip |
adm5120: fix macronix bootloc patch
SVN-Revision: 31508
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/adm5120/patches-3.3/101-cfi_fixup_macronix_bootloc.patch | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/adm5120/patches-3.3/101-cfi_fixup_macronix_bootloc.patch b/target/linux/adm5120/patches-3.3/101-cfi_fixup_macronix_bootloc.patch index 5a7cc8e985..12f914a2a6 100644 --- a/target/linux/adm5120/patches-3.3/101-cfi_fixup_macronix_bootloc.patch +++ b/target/linux/adm5120/patches-3.3/101-cfi_fixup_macronix_bootloc.patch @@ -21,7 +21,7 @@ +/* + * Some Macronix chips has no/bad bootblock information in the CFI table + */ -+static void fixup_macronix_bootloc(struct mtd_info *mtd, void* param) ++static void fixup_macronix_bootloc(struct mtd_info *mtd) +{ + struct map_info *map = mtd->priv; + struct cfi_private *cfi = map->fldrv_priv; @@ -60,7 +60,7 @@ { CFI_MFR_ANY, CFI_ID_ANY, fixup_use_erase_chip }, { CFI_MFR_ATMEL, AT49BV6416, fixup_use_atmel_lock }, +#ifdef CONFIG_MTD_CFI_FIXUP_MACRONIX_BOOTLOC -+ { CFI_MFR_MACRONIX, CFI_ID_ANY, fixup_macronix_bootloc, NULL, }, ++ { CFI_MFR_MACRONIX, CFI_ID_ANY, fixup_macronix_bootloc }, +#endif { 0, 0, NULL } }; |