diff options
author | Allan Stephens <Allan.Stephens@windriver.com> | 2010-12-31 13:59:25 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-01-01 16:57:52 -0500 |
commit | b29f14284989b3d0b3a5ce268b5b1fc4df9c5795 (patch) | |
tree | a690fc7db347cb8ca2b38dc1da73a477d1fb4779 /net/tipc/core.h | |
parent | f5e75269f59f7c3816f23314b924895e4ecf8409 (diff) |
tipc: remove calls to dbg() and msg_dbg()
Eliminates obsolete calls to two of TIPC's main debugging macros, as well
as a pair of associated debugging routines that are no longer required.
Signed-off-by: Allan Stephens <Allan.Stephens@windriver.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc/core.h')
-rw-r--r-- | net/tipc/core.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/net/tipc/core.h b/net/tipc/core.h index 17f3670ed95d..b4e54f8dd43b 100644 --- a/net/tipc/core.h +++ b/net/tipc/core.h | |||
@@ -243,7 +243,6 @@ u32 tipc_k_signal(Handler routine, unsigned long argument); | |||
243 | static inline void k_init_timer(struct timer_list *timer, Handler routine, | 243 | static inline void k_init_timer(struct timer_list *timer, Handler routine, |
244 | unsigned long argument) | 244 | unsigned long argument) |
245 | { | 245 | { |
246 | dbg("initializing timer %p\n", timer); | ||
247 | setup_timer(timer, routine, argument); | 246 | setup_timer(timer, routine, argument); |
248 | } | 247 | } |
249 | 248 | ||
@@ -263,7 +262,6 @@ static inline void k_init_timer(struct timer_list *timer, Handler routine, | |||
263 | 262 | ||
264 | static inline void k_start_timer(struct timer_list *timer, unsigned long msec) | 263 | static inline void k_start_timer(struct timer_list *timer, unsigned long msec) |
265 | { | 264 | { |
266 | dbg("starting timer %p for %u\n", timer, msec); | ||
267 | mod_timer(timer, jiffies + msecs_to_jiffies(msec) + 1); | 265 | mod_timer(timer, jiffies + msecs_to_jiffies(msec) + 1); |
268 | } | 266 | } |
269 | 267 | ||
@@ -280,7 +278,6 @@ static inline void k_start_timer(struct timer_list *timer, unsigned long msec) | |||
280 | 278 | ||
281 | static inline void k_cancel_timer(struct timer_list *timer) | 279 | static inline void k_cancel_timer(struct timer_list *timer) |
282 | { | 280 | { |
283 | dbg("cancelling timer %p\n", timer); | ||
284 | del_timer_sync(timer); | 281 | del_timer_sync(timer); |
285 | } | 282 | } |
286 | 283 | ||
@@ -298,7 +295,6 @@ static inline void k_cancel_timer(struct timer_list *timer) | |||
298 | 295 | ||
299 | static inline void k_term_timer(struct timer_list *timer) | 296 | static inline void k_term_timer(struct timer_list *timer) |
300 | { | 297 | { |
301 | dbg("terminating timer %p\n", timer); | ||
302 | } | 298 | } |
303 | 299 | ||
304 | 300 | ||