From: Michael Ellerman Date: Fri, 16 Apr 2021 11:38:04 +0000 (+1000) Subject: macintosh/via-pmu: Fix build warning X-Git-Tag: accepted/tizen/unified/20230118.172025~7331^2~67 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0751fdf280416847d31d9b7276e4afc614fc6e15;p=platform%2Fkernel%2Flinux-rpi.git macintosh/via-pmu: Fix build warning Now that __fake_sleep is static, we get a warning about it being unused in some configurations: drivers/macintosh/via-pmu.c:190:12: warning: '__fake_sleep' defined but not used 190 | static int __fake_sleep; Move it inside the ifdef where it's used to avoid the warning. Fixes: 95d143923379 ("macintosh/via-pmu: Make some symbols static") Reported-by: Stephen Rothwell Signed-off-by: Michael Ellerman Link: https://lore.kernel.org/r/20210416114139.772236-1-mpe@ellerman.id.au --- diff --git a/drivers/macintosh/via-pmu.c b/drivers/macintosh/via-pmu.c index 4787664..4bdd4c4 100644 --- a/drivers/macintosh/via-pmu.c +++ b/drivers/macintosh/via-pmu.c @@ -187,7 +187,6 @@ static int query_batt_timer = BATTERY_POLLING_COUNT; static struct adb_request batt_req; static struct proc_dir_entry *proc_pmu_batt[PMU_MAX_BATTERIES]; -static int __fake_sleep; int asleep; #ifdef CONFIG_ADB @@ -1833,6 +1832,7 @@ pmu_present(void) */ static u32 save_via[8]; +static int __fake_sleep; static void save_via_state(void)