Merge branch 'smp-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull smp fixlet from Thomas Gleixner: "A trivial build warning fix for newer compilers" * 'smp-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: cpu/hotplug: Move inline keyword at the beginning of declaration
This commit is contained in:
commit
8d517bdfb5
|
@ -80,19 +80,19 @@ static struct lockdep_map cpuhp_state_down_map =
|
|||
STATIC_LOCKDEP_MAP_INIT("cpuhp_state-down", &cpuhp_state_down_map);
|
||||
|
||||
|
||||
static void inline cpuhp_lock_acquire(bool bringup)
|
||||
static inline void cpuhp_lock_acquire(bool bringup)
|
||||
{
|
||||
lock_map_acquire(bringup ? &cpuhp_state_up_map : &cpuhp_state_down_map);
|
||||
}
|
||||
|
||||
static void inline cpuhp_lock_release(bool bringup)
|
||||
static inline void cpuhp_lock_release(bool bringup)
|
||||
{
|
||||
lock_map_release(bringup ? &cpuhp_state_up_map : &cpuhp_state_down_map);
|
||||
}
|
||||
#else
|
||||
|
||||
static void inline cpuhp_lock_acquire(bool bringup) { }
|
||||
static void inline cpuhp_lock_release(bool bringup) { }
|
||||
static inline void cpuhp_lock_acquire(bool bringup) { }
|
||||
static inline void cpuhp_lock_release(bool bringup) { }
|
||||
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue