Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b2fda129 authored by Axel Lin's avatar Axel Lin Committed by Brian Norris
Browse files

mtd: m25p80: Use positive logic to check JEDEC ID



For slightly better readability.

Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
Signed-off-by: default avatarBrian Norris <computersforpeace@gmail.com>
parent bd9c6e99
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -1078,8 +1078,7 @@ static const struct spi_device_id *jedec_probe(struct spi_device *spi)
	for (tmp = 0; tmp < ARRAY_SIZE(m25p_ids) - 1; tmp++) {
		info = (void *)m25p_ids[tmp].driver_data;
		if (info->jedec_id == jedec) {
			if (info->ext_id != 0 && info->ext_id != ext_jedec)
				continue;
			if (info->ext_id == 0 || info->ext_id == ext_jedec)
				return &m25p_ids[tmp];
		}
	}