Commit 5350f6ec authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Miquel Raynal
Browse files

mtd: cfi: Get rid of redundant 'else'



In the snippets like the following

	if (...)
		return / goto / break / continue ...;
	else
		...

the 'else' is redundant. Get rid of it.

Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: default avatarJeff Johnson <quic_jjohnson@quicinc.com>
Signed-off-by: default avatarMiquel Raynal <miquel.raynal@bootlin.com>
Link: https://lore.kernel.org/linux-mtd/20240503184230.2927283-1-andriy.shevchenko@linux.intel.com
parent 1613e604
Loading
Loading
Loading
Loading
+16 −16
Original line number Diff line number Diff line
@@ -308,33 +308,33 @@ static inline uint8_t cfi_read_query(struct map_info *map, uint32_t addr)
{
	map_word val = map_read(map, addr);

	if (map_bankwidth_is_1(map)) {
	if (map_bankwidth_is_1(map))
		return val.x[0];
	} else if (map_bankwidth_is_2(map)) {
	if (map_bankwidth_is_2(map))
		return cfi16_to_cpu(map, val.x[0]);
	} else {
		/* No point in a 64-bit byteswap since that would just be
		   swapping the responses from different chips, and we are
		   only interested in one chip (a representative sample) */
	/*
	 * No point in a 64-bit byteswap since that would just be
	 * swapping the responses from different chips, and we are
	 * only interested in one chip (a representative sample)
	 */
	return cfi32_to_cpu(map, val.x[0]);
}
}

static inline uint16_t cfi_read_query16(struct map_info *map, uint32_t addr)
{
	map_word val = map_read(map, addr);

	if (map_bankwidth_is_1(map)) {
	if (map_bankwidth_is_1(map))
		return val.x[0] & 0xff;
	} else if (map_bankwidth_is_2(map)) {
	if (map_bankwidth_is_2(map))
		return cfi16_to_cpu(map, val.x[0]);
	} else {
		/* No point in a 64-bit byteswap since that would just be
		   swapping the responses from different chips, and we are
		   only interested in one chip (a representative sample) */
	/*
	 * No point in a 64-bit byteswap since that would just be
	 * swapping the responses from different chips, and we are
	 * only interested in one chip (a representative sample)
	 */
	return cfi32_to_cpu(map, val.x[0]);
}
}

void cfi_udelay(int us);