File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -80,19 +80,19 @@ static struct lockdep_map cpuhp_state_down_map =
80
80
STATIC_LOCKDEP_MAP_INIT ("cpuhp_state-down" , & cpuhp_state_down_map );
81
81
82
82
83
- static void inline cpuhp_lock_acquire (bool bringup )
83
+ static inline void cpuhp_lock_acquire (bool bringup )
84
84
{
85
85
lock_map_acquire (bringup ? & cpuhp_state_up_map : & cpuhp_state_down_map );
86
86
}
87
87
88
- static void inline cpuhp_lock_release (bool bringup )
88
+ static inline void cpuhp_lock_release (bool bringup )
89
89
{
90
90
lock_map_release (bringup ? & cpuhp_state_up_map : & cpuhp_state_down_map );
91
91
}
92
92
#else
93
93
94
- static void inline cpuhp_lock_acquire (bool bringup ) { }
95
- static void inline cpuhp_lock_release (bool bringup ) { }
94
+ static inline void cpuhp_lock_acquire (bool bringup ) { }
95
+ static inline void cpuhp_lock_release (bool bringup ) { }
96
96
97
97
#endif
98
98
You can’t perform that action at this time.
0 commit comments