From 116a73d09f9f531f3558bc619ff237d3d1b8c2dc Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Mon, 12 Aug 2013 12:22:26 +0200 Subject: [PATCH] mtd: m25p80: remove unnecessary ifdef of_property_read_bool properly compiles away, no need to ifdef this for non DT builds. Signed-off-by: Sascha Hauer Acked-by: Marek Vasut Signed-off-by: Artem Bityutskiy Signed-off-by: Brian Norris --- drivers/mtd/devices/m25p80.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/mtd/devices/m25p80.c b/drivers/mtd/devices/m25p80.c index a759c1fb0620..35d585135829 100644 --- a/drivers/mtd/devices/m25p80.c +++ b/drivers/mtd/devices/m25p80.c @@ -1038,10 +1038,8 @@ static int m25p_probe(struct spi_device *spi) flash->mtd.writebufsize = flash->page_size; flash->fast_read = false; -#ifdef CONFIG_OF if (np && of_property_read_bool(np, "m25p,fast-read")) flash->fast_read = true; -#endif #ifdef CONFIG_M25PXX_USE_FAST_READ flash->fast_read = true; -- 2.39.5