diff options
author | Thomas Gleixner <[email protected]> | 2019-06-23 15:23:47 +0200 |
---|---|---|
committer | Thomas Gleixner <[email protected]> | 2019-06-28 00:57:17 +0200 |
commit | 433526cc0502ff13d9b2fd63ba546a202dac0463 (patch) | |
tree | 23578d81b330dd66258611acc1f9d7fcedebfbc8 | |
parent | eb8ec32c45a87efbc6683b771597084c4d904a17 (diff) |
x86/hpet: Mark init functions __init
They are only called from init code.
Signed-off-by: Thomas Gleixner <[email protected]>
Reviewed-by: Ingo Molnar <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Ricardo Neri <[email protected]>
Cc: Ashok Raj <[email protected]>
Cc: Andi Kleen <[email protected]>
Cc: Suravee Suthikulpanit <[email protected]>
Cc: Stephane Eranian <[email protected]>
Cc: Ravi Shankar <[email protected]>
Link: https://lkml.kernel.org/r/[email protected]
-rw-r--r-- | arch/x86/kernel/hpet.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/kernel/hpet.c b/arch/x86/kernel/hpet.c index 69cd0829f432..638aaff39819 100644 --- a/arch/x86/kernel/hpet.c +++ b/arch/x86/kernel/hpet.c @@ -176,7 +176,7 @@ do { \ static void hpet_reserve_msi_timers(struct hpet_data *hd); -static void hpet_reserve_platform_timers(unsigned int id) +static void __init hpet_reserve_platform_timers(unsigned int id) { struct hpet __iomem *hpet = hpet_virt_address; struct hpet_timer __iomem *timer = &hpet->hpet_timers[2]; @@ -572,7 +572,7 @@ static void init_one_hpet_msi_clockevent(struct hpet_dev *hdev, int cpu) #define RESERVE_TIMERS 0 #endif -static void hpet_msi_capability_lookup(unsigned int start_timer) +static void __init hpet_msi_capability_lookup(unsigned int start_timer) { unsigned int id; unsigned int num_timers; @@ -631,7 +631,7 @@ static void hpet_msi_capability_lookup(unsigned int start_timer) } #ifdef CONFIG_HPET -static void hpet_reserve_msi_timers(struct hpet_data *hd) +static void __init hpet_reserve_msi_timers(struct hpet_data *hd) { int i; |