From: Baolin Wang Date: Mon, 13 Apr 2020 06:30:25 +0000 (+0800) Subject: spi: sprd: adi: Use IS_ENABLED() to validate configs X-Git-Tag: v5.8-rc1~239^2^2~84 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bb4bf8d2f4e0fdf64e43bb3a3186e04891b8a8e1;p=thirdparty%2Fkernel%2Flinux.git spi: sprd: adi: Use IS_ENABLED() to validate configs If the Spreadtrum wachdog is loaded as a module, we still need set default watchdog reboot mode in case the rebooting is caused by watchdog. But now we can not set the watchdog reboot mode by using '#ifdef' to validate the watchdog configuration, thus we can change to use IS_ENABLED() to fix this issue. Signed-off-by: Baolin Wang Link: https://lore.kernel.org/r/e38807eadd5550add8eb90dd3f8fbe2cfc39cc13.1586759322.git.baolin.wang7@gmail.com Signed-off-by: Mark Brown --- diff --git a/drivers/spi/spi-sprd-adi.c b/drivers/spi/spi-sprd-adi.c index 87dadb6b8ebf4..88e6543648cb8 100644 --- a/drivers/spi/spi-sprd-adi.c +++ b/drivers/spi/spi-sprd-adi.c @@ -319,7 +319,7 @@ static int sprd_adi_transfer_one(struct spi_controller *ctlr, static void sprd_adi_set_wdt_rst_mode(struct sprd_adi *sadi) { -#ifdef CONFIG_SPRD_WATCHDOG +#if IS_ENABLED(CONFIG_SPRD_WATCHDOG) u32 val; /* Set default watchdog reboot mode */