]> asedeno.scripts.mit.edu Git - linux.git/commit
pinctrl: qcom: sdm845: Fix CONFIG preprocessor guard
authorNathan Chancellor <natechancellor@gmail.com>
Fri, 21 Jun 2019 20:20:43 +0000 (13:20 -0700)
committerLinus Walleij <linus.walleij@linaro.org>
Tue, 25 Jun 2019 14:06:23 +0000 (16:06 +0200)
commit3fe2f17c0ed5ca1a1ed6291499067256dd338f66
tree181bbc53ef4af76d1b34be4022938566adb5a0f7
parentcf75b8f2cd8f1f9beb64c2fa2eb93a7c265b59c1
pinctrl: qcom: sdm845: Fix CONFIG preprocessor guard

Clang warns when CONFIG_ACPI is unset:

 drivers/pinctrl/qcom/pinctrl-sdm845.c:1320:5: warning: 'CONFIG_ACPI' is
 not defined, evaluates to 0 [-Wundef]
 #if CONFIG_ACPI
     ^
 1 warning generated.

Use ifdef instead of if to resolve this.

Fixes: a229105d7a1e ("pinctrl: qcom: sdm845: Provide ACPI support")
Link: https://github.com/ClangBuiltLinux/linux/issues/569
Signed-off-by: Nathan Chancellor <natechancellor@gmail.com>
Reviewed-by: Nick Desaulniers <ndesaulniers@google.com>
Acked-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/qcom/pinctrl-sdm845.c