* [PATCH] [MTD] gen_probe.c: Probe chips in decreasing device size (most significant first)
@ 2008-09-14 11:09 Michel Stempin
2008-10-08 12:46 ` Josh Boyer
0 siblings, 1 reply; 2+ messages in thread
From: Michel Stempin @ 2008-09-14 11:09 UTC (permalink / raw)
To: linux-mtd
Probe chips in decreasing device size to detect most significant chip
IDs first in case there are two chips with the same LSB.
This case has been found between SST39VF3201 (Mfr: 0x0020, Id: 0x235B)
and SST49LF080A (Mfr: 0x0020, Id: 0x005B) chips.
Signed-off-by: Michel Stempin <michel.stempin@wanadoo.fr>
---
gen_probe.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/mtd/chips/gen_probe.c
b/drivers/mtd/chips/gen_probe.c
index f061885..d1875f8 100644
--- a/drivers/mtd/chips/gen_probe.c
+++ b/drivers/mtd/chips/gen_probe.c
@@ -170,7 +170,7 @@ static int genprobe_new_chip(struct map_info *map,
struct chip_probe *cp,
{
int min_chips = (map_bankwidth(map)/4?:1); /* At most 4-bytes
wide. */
int max_chips = map_bankwidth(map); /* And minimum 1 */
- int nr_chips, type;
+ int nr_chips, min_type, type;
for (nr_chips = max_chips; nr_chips >= min_chips; nr_chips >>=
1) {
@@ -181,9 +181,9 @@ static int genprobe_new_chip(struct map_info *map,
struct chip_probe *cp,
/* Minimum device size. Don't look for one 8-bit device
in a 16-bit bus, etc. */
- type = map_bankwidth(map) / nr_chips;
+ min_type = map_bankwidth(map) / nr_chips;
- for (; type <= CFI_DEVICETYPE_X32; type<<=1) {
+ for (type = CFI_DEVICETYPE_X32; type >= min_type;
type>>=1) {
cfi->device_type = type;
if (cp->probe_chip(map, 0, NULL, cfi))
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] [MTD] gen_probe.c: Probe chips in decreasing device size (most significant first)
2008-09-14 11:09 [PATCH] [MTD] gen_probe.c: Probe chips in decreasing device size (most significant first) Michel Stempin
@ 2008-10-08 12:46 ` Josh Boyer
0 siblings, 0 replies; 2+ messages in thread
From: Josh Boyer @ 2008-10-08 12:46 UTC (permalink / raw)
To: Michel Stempin; +Cc: linux-mtd
On Sun, Sep 14, 2008 at 01:09:12PM +0200, Michel Stempin wrote:
>Probe chips in decreasing device size to detect most significant chip
>IDs first in case there are two chips with the same LSB.
>
>This case has been found between SST39VF3201 (Mfr: 0x0020, Id: 0x235B)
>and SST49LF080A (Mfr: 0x0020, Id: 0x005B) chips.
>
>Signed-off-by: Michel Stempin <michel.stempin@wanadoo.fr>
Your patch is word-wrapped.
josh
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-10-08 12:47 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-14 11:09 [PATCH] [MTD] gen_probe.c: Probe chips in decreasing device size (most significant first) Michel Stempin
2008-10-08 12:46 ` Josh Boyer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox