diff options
author | Jonas Gorski <jogo@openwrt.org> | 2012-05-27 13:22:37 +0000 |
---|---|---|
committer | Jonas Gorski <jogo@openwrt.org> | 2012-05-27 13:22:37 +0000 |
commit | e19ed52fd1ddda94f06f52866570dbb8d84c3212 (patch) | |
tree | 2addfd1a12fa7651de36a196a555119d4baa2428 /target/linux/brcm63xx/patches-3.3/426-MTD-m25p80-allow-passing-pp_data.patch | |
parent | e34018cc9e825ba01de83117b7cac85b6f0f0a33 (diff) | |
download | mtk-20170518-e19ed52fd1ddda94f06f52866570dbb8d84c3212.zip mtk-20170518-e19ed52fd1ddda94f06f52866570dbb8d84c3212.tar.gz mtk-20170518-e19ed52fd1ddda94f06f52866570dbb8d84c3212.tar.bz2 |
bcm63xx: add a fixup for ath9k devices
SVN-Revision: 31880
Diffstat (limited to 'target/linux/brcm63xx/patches-3.3/426-MTD-m25p80-allow-passing-pp_data.patch')
-rw-r--r-- | target/linux/brcm63xx/patches-3.3/426-MTD-m25p80-allow-passing-pp_data.patch | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/target/linux/brcm63xx/patches-3.3/426-MTD-m25p80-allow-passing-pp_data.patch b/target/linux/brcm63xx/patches-3.3/426-MTD-m25p80-allow-passing-pp_data.patch new file mode 100644 index 0000000..bda4807 --- /dev/null +++ b/target/linux/brcm63xx/patches-3.3/426-MTD-m25p80-allow-passing-pp_data.patch @@ -0,0 +1,40 @@ +From 7f17dfe9009beb07a3de0e380932a725293829df Mon Sep 17 00:00:00 2001 +From: Jonas Gorski <jonas.gorski@gmail.com> +Date: Tue, 1 May 2012 17:33:03 +0200 +Subject: [PATCH 64/79] MTD: m25p80: allow passing pp_data + +--- + drivers/mtd/devices/m25p80.c | 3 +++ + include/linux/spi/flash.h | 2 ++ + 2 files changed, 5 insertions(+) + +--- a/drivers/mtd/devices/m25p80.c ++++ b/drivers/mtd/devices/m25p80.c +@@ -886,6 +886,9 @@ static int __devinit m25p_probe(struct s + dev_warn(&spi->dev, "unrecognized id %s\n", data->type); + } + ++ if (data && data->pp_data) ++ memcpy(&ppdata, data->pp_data, sizeof(ppdata)); ++ + info = (void *)id->driver_data; + + if (info->jedec_id) { +--- a/include/linux/spi/flash.h ++++ b/include/linux/spi/flash.h +@@ -12,6 +12,7 @@ struct mtd_part_parser_data; + * with chips that can't be queried for JEDEC or other IDs + * @part_probe_types: optional list of MTD parser names to use for + * partitioning ++ * @pp_data: optional partition parser data. + * + * @max_transfer_len: option maximum read/write length limitation for + * SPI controllers not able to transfer any length commands. +@@ -30,6 +31,7 @@ struct flash_platform_data { + char *type; + + const char **part_probe_types; ++ struct mtd_part_parser_data *pp_data; + + unsigned int max_transfer_len; + /* we'll likely add more ... use JEDEC IDs, etc */ |