aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Lezcano <daniel.lezcano@linaro.org>2018-09-24 00:08:07 -0400
committerDaniel Lezcano <daniel.lezcano@linaro.org>2018-10-03 08:37:02 -0400
commit9414229c9c53d3604032aa80f3d2e9ba5770cd4a (patch)
tree9ed5c67e75d568776410e505c11e38eca792ade7
parent9d8d47ea6ec6048abc75ccc4486aff1a7db1ff4b (diff)
clocksource: Remove obsolete CLOCKSOURCE_OF_DECLARE
The macro CLOCKSOURCE_OF_DECLARE was renamed more TIMER_OF_DECLARE, and we kept an alias CLOCKSOURCE_OF_DECLARE in order to smooth the transition for drivers. This change was done 1.5 year ago, we can reasonably remove this backward compatible macro as it is no longer used anywhere. Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
-rw-r--r--include/linux/clocksource.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/clocksource.h b/include/linux/clocksource.h
index 308918928767..4c58c1e64080 100644
--- a/include/linux/clocksource.h
+++ b/include/linux/clocksource.h
@@ -257,9 +257,6 @@ extern int clocksource_i8253_init(void);
257#define TIMER_OF_DECLARE(name, compat, fn) \ 257#define TIMER_OF_DECLARE(name, compat, fn) \
258 OF_DECLARE_1_RET(timer, name, compat, fn) 258 OF_DECLARE_1_RET(timer, name, compat, fn)
259 259
260#define CLOCKSOURCE_OF_DECLARE(name, compat, fn) \
261 TIMER_OF_DECLARE(name, compat, fn)
262
263#ifdef CONFIG_TIMER_PROBE 260#ifdef CONFIG_TIMER_PROBE
264extern void timer_probe(void); 261extern void timer_probe(void);
265#else 262#else