]> git.kernelconcepts.de Git - karo-tx-linux.git/blobdiff - kernel/time/tick-sched.c
tick: Move skew_tick option into the HIGH_RES_TIMER section
[karo-tx-linux.git] / kernel / time / tick-sched.c
index 4eddbb5ea9c5c7bb94aa035f623aa428d4c7b3b3..efd38666753691a6a498efbdc8264810de49420e 100644 (file)
@@ -816,6 +816,14 @@ static enum hrtimer_restart tick_sched_timer(struct hrtimer *timer)
 
 static int sched_skew_tick;
 
+static int __init skew_tick(char *str)
+{
+       get_option(&str, &sched_skew_tick);
+
+       return 0;
+}
+early_param("skew_tick", skew_tick);
+
 /**
  * tick_setup_sched_timer - setup the tick emulation timer
  */
@@ -920,11 +928,3 @@ int tick_check_oneshot_change(int allow_nohz)
        tick_nohz_switch_to_nohz();
        return 0;
 }
-
-static int __init skew_tick(char *str)
-{
-       get_option(&str, &sched_skew_tick);
-
-       return 0;
-}
-early_param("skew_tick", skew_tick);