Browse Source

clockevent: export register_device and delta2ns

Export the following symbols using EXPORT_SYMBOL_GPL:
 - clockevent_delta2ns
 - clockevents_register_device

This allows us to build SuperH clockevent and clocksource
drivers as modules, see drivers/clocksource/sh_*.c

[ Impact: allow modular build of clockevent drivers ]

Signed-off-by: Magnus Damm <damm@igel.co.jp>
LKML-Reference: <20090501055247.8286.64067.sendpatchset@rx1.opensource.se>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Magnus Damm 16 years ago
parent
commit
c81fc2c331
1 changed files with 2 additions and 0 deletions
  1. 2 0
      kernel/time/clockevents.c

+ 2 - 0
kernel/time/clockevents.c

@@ -54,6 +54,7 @@ unsigned long clockevent_delta2ns(unsigned long latch,
 
 
 	return (unsigned long) clc;
 	return (unsigned long) clc;
 }
 }
+EXPORT_SYMBOL_GPL(clockevent_delta2ns);
 
 
 /**
 /**
  * clockevents_set_mode - set the operating mode of a clock event device
  * clockevents_set_mode - set the operating mode of a clock event device
@@ -187,6 +188,7 @@ void clockevents_register_device(struct clock_event_device *dev)
 
 
 	spin_unlock(&clockevents_lock);
 	spin_unlock(&clockevents_lock);
 }
 }
+EXPORT_SYMBOL_GPL(clockevents_register_device);
 
 
 /*
 /*
  * Noop handler when we shut down an event device
  * Noop handler when we shut down an event device