|
@@ -46,7 +46,7 @@ extern int tick_switch_to_oneshot(void (*handler)(struct clock_event_device *));
|
|
|
extern void tick_resume_oneshot(void);
|
|
|
# ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
|
|
|
extern void tick_broadcast_setup_oneshot(struct clock_event_device *bc);
|
|
|
-extern void tick_broadcast_oneshot_control(unsigned long reason);
|
|
|
+extern int tick_broadcast_oneshot_control(unsigned long reason);
|
|
|
extern void tick_broadcast_switch_to_oneshot(void);
|
|
|
extern void tick_shutdown_broadcast_oneshot(unsigned int *cpup);
|
|
|
extern int tick_resume_broadcast_oneshot(struct clock_event_device *bc);
|
|
@@ -58,7 +58,7 @@ static inline void tick_broadcast_setup_oneshot(struct clock_event_device *bc)
|
|
|
{
|
|
|
BUG();
|
|
|
}
|
|
|
-static inline void tick_broadcast_oneshot_control(unsigned long reason) { }
|
|
|
+static inline int tick_broadcast_oneshot_control(unsigned long reason) { return 0; }
|
|
|
static inline void tick_broadcast_switch_to_oneshot(void) { }
|
|
|
static inline void tick_shutdown_broadcast_oneshot(unsigned int *cpup) { }
|
|
|
static inline int tick_broadcast_oneshot_active(void) { return 0; }
|
|
@@ -87,7 +87,7 @@ static inline void tick_broadcast_setup_oneshot(struct clock_event_device *bc)
|
|
|
{
|
|
|
BUG();
|
|
|
}
|
|
|
-static inline void tick_broadcast_oneshot_control(unsigned long reason) { }
|
|
|
+static inline int tick_broadcast_oneshot_control(unsigned long reason) { return 0; }
|
|
|
static inline void tick_shutdown_broadcast_oneshot(unsigned int *cpup) { }
|
|
|
static inline int tick_resume_broadcast_oneshot(struct clock_event_device *bc)
|
|
|
{
|