mtd: spi-nor: core: fix implicit declaration warning
authorZeng Heng <zengheng4@huawei.com>
Fri, 23 Sep 2022 03:14:57 +0000 (11:14 +0800)
committerTudor Ambarus <tudor.ambarus@linaro.org>
Thu, 26 Jan 2023 17:36:31 +0000 (19:36 +0200)
commit25e3f30601a368642678744fc8a9b1dce183c7bc
treec3db91a5baf3daf3f721051b2a0d5484bebd3617
parent55398beb0846a9eca38db5250c9e7b3e59d407ca
mtd: spi-nor: core: fix implicit declaration warning

spi-nor/core.c needs to include linux/delay.h,
or it would raise below compile warning:

drivers/mtd/spi-nor/core.c: In function ‘spi_nor_soft_reset’:
drivers/mtd/spi-nor/core.c:2779:2: error: implicit declaration of function ‘usleep_range’ [-Werror=implicit-function-declaration]
 2779 |  usleep_range(SPI_NOR_SRST_SLEEP_MIN, SPI_NOR_SRST_SLEEP_MAX);
      |  ^~~~~~~~~~~~

Fixes: d73ee7534cc5 ("mtd: spi-nor: core: perform a Soft Reset on shutdown")
Signed-off-by: Zeng Heng <zengheng4@huawei.com>
Signed-off-by: Tudor Ambarus <tudor.ambarus@linaro.org>
Link: https://lore.kernel.org/r/20220923031457.56103-1-zengheng4@huawei.com
drivers/mtd/spi-nor/core.c