@@ -72,12 +72,12 @@ void timer_init_key(struct timer_list *timer,
7272 const char * name , struct lock_class_key * key );
7373
7474#ifdef CONFIG_DEBUG_OBJECTS_TIMERS
75- extern void init_timer_on_stack_key (struct timer_list * timer ,
75+ extern void timer_init_key_on_stack (struct timer_list * timer ,
7676 void (* func )(struct timer_list * ),
7777 unsigned int flags , const char * name ,
7878 struct lock_class_key * key );
7979#else
80- static inline void init_timer_on_stack_key (struct timer_list * timer ,
80+ static inline void timer_init_key_on_stack (struct timer_list * timer ,
8181 void (* func )(struct timer_list * ),
8282 unsigned int flags ,
8383 const char * name ,
@@ -97,14 +97,14 @@ static inline void init_timer_on_stack_key(struct timer_list *timer,
9797#define __init_timer_on_stack (_timer , _fn , _flags ) \
9898 do { \
9999 static struct lock_class_key __key; \
100- init_timer_on_stack_key ((_timer), (_fn), (_flags), \
100+ timer_init_key_on_stack ((_timer), (_fn), (_flags), \
101101 #_timer, &__key); \
102102 } while (0)
103103#else
104104#define __init_timer (_timer , _fn , _flags ) \
105105 timer_init_key((_timer), (_fn), (_flags), NULL, NULL)
106106#define __init_timer_on_stack (_timer , _fn , _flags ) \
107- init_timer_on_stack_key ((_timer), (_fn), (_flags), NULL, NULL)
107+ timer_init_key_on_stack ((_timer), (_fn), (_flags), NULL, NULL)
108108#endif
109109
110110/**
0 commit comments