diff options
author | YueHaibing <yuehaibing@huawei.com> | 2019-04-13 22:12:43 +0800 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2019-08-13 05:05:38 -0700 |
commit | 4a65bbb9109ed7edd4b6ed7168ced48abb8561a2 (patch) | |
tree | 521c24d079ebf6338e759a5f05a34bb9cf5ef7d3 /drivers/soc/ti | |
parent | d8e0cecbcaf09f38661bfb7da4c1e62297308672 (diff) |
soc: ti: pm33xx: Make two symbols static
Fix sparse warnings:
drivers/soc/ti/pm33xx.c:144:27: warning: symbol 'rtc_wake_src' was not declared. Should it be static?
drivers/soc/ti/pm33xx.c:160:5: warning: symbol 'am33xx_rtc_only_idle' was not declared. Should it be static?
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'drivers/soc/ti')
-rw-r--r-- | drivers/soc/ti/pm33xx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/soc/ti/pm33xx.c b/drivers/soc/ti/pm33xx.c index 5f3a4499cf40..ccc6d53fe788 100644 --- a/drivers/soc/ti/pm33xx.c +++ b/drivers/soc/ti/pm33xx.c @@ -141,7 +141,7 @@ static int __init am43xx_map_gic(void) } #ifdef CONFIG_SUSPEND -struct wkup_m3_wakeup_src rtc_wake_src(void) +static struct wkup_m3_wakeup_src rtc_wake_src(void) { u32 i; @@ -157,7 +157,7 @@ struct wkup_m3_wakeup_src rtc_wake_src(void) return rtc_ext_wakeup; } -int am33xx_rtc_only_idle(unsigned long wfi_flags) +static int am33xx_rtc_only_idle(unsigned long wfi_flags) { omap_rtc_power_off_program(&omap_rtc->dev); am33xx_do_wfi_sram(wfi_flags); |