diff options
author | John Crispin <john@openwrt.org> | 2014-04-12 21:21:14 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2014-04-12 21:21:14 +0000 |
commit | 1246dce0b31d3b950e04ab3a6fd466f289510c7c (patch) | |
tree | 5a8031c749e5208b4e979aad0f54ebb7841670b3 /package/boot/uboot-lantiq/patches/0007-sf-eon-use-16-bit-ID-for-comparison.patch | |
parent | 22916814e3621dd807b0d89485ba3c60cfdf7c10 (diff) | |
download | upstream-1246dce0b31d3b950e04ab3a6fd466f289510c7c.tar.gz upstream-1246dce0b31d3b950e04ab3a6fd466f289510c7c.tar.bz2 upstream-1246dce0b31d3b950e04ab3a6fd466f289510c7c.zip |
uboot-lantiq: update to v2013.10
Patches created from tree:
git@github.com:danielschwierzeck/u-boot-lantiq.git
v2013.10..u-boot-lantiq-v2013.10-openwrt4
Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
SVN-Revision: 40482
Diffstat (limited to 'package/boot/uboot-lantiq/patches/0007-sf-eon-use-16-bit-ID-for-comparison.patch')
-rw-r--r-- | package/boot/uboot-lantiq/patches/0007-sf-eon-use-16-bit-ID-for-comparison.patch | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/package/boot/uboot-lantiq/patches/0007-sf-eon-use-16-bit-ID-for-comparison.patch b/package/boot/uboot-lantiq/patches/0007-sf-eon-use-16-bit-ID-for-comparison.patch deleted file mode 100644 index 6836674fed..0000000000 --- a/package/boot/uboot-lantiq/patches/0007-sf-eon-use-16-bit-ID-for-comparison.patch +++ /dev/null @@ -1,45 +0,0 @@ -From d32f45357f0475a2f810752eeb9412fe692e1c0a Mon Sep 17 00:00:00 2001 -From: Daniel Schwierzeck <daniel.schwierzeck@gmail.com> -Date: Wed, 7 Nov 2012 14:09:21 +0100 -Subject: sf: eon: use 16 bit ID for comparison - -Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com> - ---- a/drivers/mtd/spi/eon.c -+++ b/drivers/mtd/spi/eon.c -@@ -11,19 +11,19 @@ - #include "spi_flash_internal.h" - - struct eon_spi_flash_params { -- u8 idcode1; -+ u16 idcode; - u16 nr_sectors; - const char *name; - }; - - static const struct eon_spi_flash_params eon_spi_flash_table[] = { - { -- .idcode1 = 0x16, -+ .idcode = 0x3016, - .nr_sectors = 1024, - .name = "EN25Q32B", - }, - { -- .idcode1 = 0x18, -+ .idcode = 0x3018, - .nr_sectors = 4096, - .name = "EN25Q128", - }, -@@ -33,10 +33,11 @@ int spi_flash_probe_eon(struct spi_flash - { - const struct eon_spi_flash_params *params; - unsigned int i; -+ u16 id = idcode[2] | idcode[1] << 8; - - for (i = 0; i < ARRAY_SIZE(eon_spi_flash_table); ++i) { - params = &eon_spi_flash_table[i]; -- if (params->idcode1 == idcode[2]) -+ if (params->idcode == id) - break; - } - |