To check if a certain function (here e.g. pwmchip_add()) can be called
IS_REACHABLE is the better check. The relevant difference to IS_ENABLED
is that IS_REACHABLE evaluates to 0 if the current code is builtin but the
checked symbol is =m and so must not be used.
Today there is no practical impact as CONFIG_PWM is a bool.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
                BUG();
        }
 
-       if (IS_ENABLED(CONFIG_PWM))
+       if (IS_REACHABLE(CONFIG_PWM))
                mvebu_pwm_suspend(mvchip);
 
        return 0;
                BUG();
        }
 
-       if (IS_ENABLED(CONFIG_PWM))
+       if (IS_REACHABLE(CONFIG_PWM))
                mvebu_pwm_resume(mvchip);
 
        return 0;
        devm_gpiochip_add_data(&pdev->dev, &mvchip->chip, mvchip);
 
        /* Some MVEBU SoCs have simple PWM support for GPIO lines */
-       if (IS_ENABLED(CONFIG_PWM)) {
+       if (IS_REACHABLE(CONFIG_PWM)) {
                err = mvebu_pwm_probe(pdev, mvchip, id);
                if (err)
                        return err;