From: Sascha Hauer Date: Mon, 12 Aug 2013 10:22:26 +0000 (+0200) Subject: mtd: m25p80: remove unnecessary ifdef X-Git-Tag: next-20130822~69^2~12 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=116a73d09f9f531f3558bc619ff237d3d1b8c2dc;p=karo-tx-linux.git 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 --- 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;