@@ -471,8 +471,8 @@ static inline void debug_setup(struct hrtimer *timer, clockid_t clockid, enum hr
471
471
trace_hrtimer_init (timer , clockid , mode );
472
472
}
473
473
474
- static inline void debug_init_on_stack (struct hrtimer * timer , clockid_t clockid ,
475
- enum hrtimer_mode mode )
474
+ static inline void debug_setup_on_stack (struct hrtimer * timer , clockid_t clockid ,
475
+ enum hrtimer_mode mode )
476
476
{
477
477
debug_hrtimer_init_on_stack (timer );
478
478
trace_hrtimer_init (timer , clockid , mode );
@@ -1665,7 +1665,7 @@ void hrtimer_setup_on_stack(struct hrtimer *timer,
1665
1665
enum hrtimer_restart (* function )(struct hrtimer * ),
1666
1666
clockid_t clock_id , enum hrtimer_mode mode )
1667
1667
{
1668
- debug_init_on_stack (timer , clock_id , mode );
1668
+ debug_setup_on_stack (timer , clock_id , mode );
1669
1669
__hrtimer_setup (timer , function , clock_id , mode );
1670
1670
}
1671
1671
EXPORT_SYMBOL_GPL (hrtimer_setup_on_stack );
@@ -2064,7 +2064,7 @@ static void __hrtimer_setup_sleeper(struct hrtimer_sleeper *sl,
2064
2064
void hrtimer_setup_sleeper_on_stack (struct hrtimer_sleeper * sl ,
2065
2065
clockid_t clock_id , enum hrtimer_mode mode )
2066
2066
{
2067
- debug_init_on_stack (& sl -> timer , clock_id , mode );
2067
+ debug_setup_on_stack (& sl -> timer , clock_id , mode );
2068
2068
__hrtimer_setup_sleeper (sl , clock_id , mode );
2069
2069
}
2070
2070
EXPORT_SYMBOL_GPL (hrtimer_setup_sleeper_on_stack );
0 commit comments