aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@ingics.com>2014-01-21 02:56:34 -0500
committerBrian Norris <computersforpeace@gmail.com>2014-03-11 01:42:23 -0400
commitb2fda1296bb8e213a6bad3937326ae98c4c4773c (patch)
tree39a4034e4974dee9b83056f367059b4bd4437216
parentbd9c6e99b58255b9de1982711ac9487c9a2f18be (diff)
mtd: m25p80: Use positive logic to check JEDEC ID
For slightly better readability. Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Brian Norris <computersforpeace@gmail.com>
-rw-r--r--drivers/mtd/devices/m25p80.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/mtd/devices/m25p80.c b/drivers/mtd/devices/m25p80.c
index 1e147a849c35..c6e6d8e8ef7b 100644
--- a/drivers/mtd/devices/m25p80.c
+++ b/drivers/mtd/devices/m25p80.c
@@ -1078,9 +1078,8 @@ static const struct spi_device_id *jedec_probe(struct spi_device *spi)
1078 for (tmp = 0; tmp < ARRAY_SIZE(m25p_ids) - 1; tmp++) { 1078 for (tmp = 0; tmp < ARRAY_SIZE(m25p_ids) - 1; tmp++) {
1079 info = (void *)m25p_ids[tmp].driver_data; 1079 info = (void *)m25p_ids[tmp].driver_data;
1080 if (info->jedec_id == jedec) { 1080 if (info->jedec_id == jedec) {
1081 if (info->ext_id != 0 && info->ext_id != ext_jedec) 1081 if (info->ext_id == 0 || info->ext_id == ext_jedec)
1082 continue; 1082 return &m25p_ids[tmp];
1083 return &m25p_ids[tmp];
1084 } 1083 }
1085 } 1084 }
1086 dev_err(&spi->dev, "unrecognized JEDEC id %06x\n", jedec); 1085 dev_err(&spi->dev, "unrecognized JEDEC id %06x\n", jedec);