diff options
| author | Stephen Boyd <[email protected]> | 2013-02-21 15:04:08 -0800 |
|---|---|---|
| committer | Stephen Boyd <[email protected]> | 2013-06-24 17:47:21 -0700 |
| commit | faef31b482549640e2d0095afdf3dedb992cfa80 (patch) | |
| tree | b49687da2c494960a140087745929320d202cb83 /include | |
| parent | 4d70c59bb5be9e41a06b9f11ecfba75c14f9fea7 (diff) | |
clocksource: time-armada-370-xp: Fix sparse warning
drivers/clocksource/time-armada-370-xp.c:217:13: warning: symbol
'armada_370_xp_timer_init' was not declared. Should it be static?
Also remove the __init marking in the prototype as it's
unnecessary and drop the init.h file.
Acked-by: Gregory CLEMENT <[email protected]>
Acked-by: Marc Zyngier <[email protected]>
Signed-off-by: Stephen Boyd <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/time-armada-370-xp.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/linux/time-armada-370-xp.h b/include/linux/time-armada-370-xp.h index dfdfdc03115b..6fb0856b9405 100644 --- a/include/linux/time-armada-370-xp.h +++ b/include/linux/time-armada-370-xp.h @@ -11,8 +11,6 @@ #ifndef __TIME_ARMADA_370_XPPRCMU_H #define __TIME_ARMADA_370_XPPRCMU_H -#include <linux/init.h> - -void __init armada_370_xp_timer_init(void); +void armada_370_xp_timer_init(void); #endif |