Merge "tick-broadcast: stubs when CLOCKEVENTS_BROADCAST is not defined"

This commit is contained in:
Linux Build Service Account 2014-01-14 18:00:00 -08:00 committed by Gerrit - the friendly Code Review server
commit b9a5f347d6

View file

@ -93,7 +93,16 @@ extern struct cpumask *tick_get_broadcast_mask(void);
# ifdef CONFIG_TICK_ONESHOT
extern struct cpumask *tick_get_broadcast_oneshot_mask(void);
# endif
#else
static inline struct tick_device *tick_get_broadcast_device(void)
{
return NULL;
}
static inline struct cpumask *tick_get_broadcast_mask(void)
{
return NULL;
}
# endif /* BROADCAST */
# ifdef CONFIG_TICK_ONESHOT
@ -110,6 +119,10 @@ static inline void tick_clock_notify(void) { }
static inline int tick_check_oneshot_change(int allow_nohz) { return 0; }
static inline void tick_check_idle(int cpu) { }
static inline int tick_oneshot_mode_active(void) { return 0; }
static inline struct cpumask *tick_get_broadcast_oneshot_mask(void)
{
return NULL;
}
# endif
#else /* CONFIG_GENERIC_CLOCKEVENTS */