aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic/patches-3.7/476-mtd-m25p80-allow-to-disable-small-sector-erase.patch
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2013-07-20 07:37:27 +0000
committerGabor Juhos <juhosg@openwrt.org>2013-07-20 07:37:27 +0000
commit2d33c40879046906afeb3bb4eaefbd4d14c9b503 (patch)
tree5f4a31a2b4ea39aab41f28580fbf13fc0f7976f8 /target/linux/generic/patches-3.7/476-mtd-m25p80-allow-to-disable-small-sector-erase.patch
parent5dcd68e0131317e8ffb7980f7c1dd49f34170cce (diff)
downloadupstream-2d33c40879046906afeb3bb4eaefbd4d14c9b503.tar.gz
upstream-2d33c40879046906afeb3bb4eaefbd4d14c9b503.tar.bz2
upstream-2d33c40879046906afeb3bb4eaefbd4d14c9b503.zip
linux: remove 3.7 support
It is not used by any target. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@37469 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic/patches-3.7/476-mtd-m25p80-allow-to-disable-small-sector-erase.patch')
-rw-r--r--target/linux/generic/patches-3.7/476-mtd-m25p80-allow-to-disable-small-sector-erase.patch41
1 files changed, 0 insertions, 41 deletions
diff --git a/target/linux/generic/patches-3.7/476-mtd-m25p80-allow-to-disable-small-sector-erase.patch b/target/linux/generic/patches-3.7/476-mtd-m25p80-allow-to-disable-small-sector-erase.patch
deleted file mode 100644
index d720b69328..0000000000
--- a/target/linux/generic/patches-3.7/476-mtd-m25p80-allow-to-disable-small-sector-erase.patch
+++ /dev/null
@@ -1,41 +0,0 @@
---- a/drivers/mtd/devices/Kconfig
-+++ b/drivers/mtd/devices/Kconfig
-@@ -110,6 +110,14 @@ config MTD_SPEAR_SMI
- help
- This enable SNOR support on SPEAR platforms using SMI controller
-
-+config M25PXX_PREFER_SMALL_SECTOR_ERASE
-+ bool "Prefer small sector erase"
-+ depends on MTD_M25P80
-+ default y
-+ help
-+ This option enables use of the small erase sectors if that is
-+ supported by the flash chip.
-+
- config MTD_SST25L
- tristate "Support SST25L (non JEDEC) SPI Flash chips"
- depends on SPI_MASTER
---- a/drivers/mtd/devices/m25p80.c
-+++ b/drivers/mtd/devices/m25p80.c
-@@ -84,6 +84,12 @@
-
- #define JEDEC_MFR(_jedec_id) ((_jedec_id) >> 16)
-
-+#ifdef CONFIG_M25PXX_PREFER_SMALL_SECTOR_ERASE
-+#define PREFER_SMALL_SECTOR_ERASE 1
-+#else
-+#define PREFER_SMALL_SECTOR_ERASE 0
-+#endif
-+
- /****************************************************************************/
-
- struct m25p {
-@@ -916,7 +922,7 @@ static int __devinit m25p_probe(struct s
- flash->mtd._write = m25p80_write;
-
- /* prefer "small sector" erase if possible */
-- if (info->flags & SECT_4K) {
-+ if (PREFER_SMALL_SECTOR_ERASE && (info->flags & SECT_4K)) {
- flash->erase_opcode = OPCODE_BE_4K;
- flash->mtd.erasesize = 4096;
- } else if (info->flags & SECT_4K_PMC) {