aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/aty/radeonfb.h
diff options
context:
space:
mode:
authorJean Delvare <khali@linux-fr.org>2008-04-28 05:15:12 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2008-04-28 11:58:38 -0400
commitb0313f89672eddf0188dac96bb8f83135510a45c (patch)
treef3e926c582c4bf28276ffaa79e735a79c3cf899f /drivers/video/aty/radeonfb.h
parente7a18c9c86d14247b514157aae60326d45695476 (diff)
radeonfb: fix debug option
Fix CONFIG_FB_RADEON_DEBUG. DEBUG must be defined before including any kernel header, otherwise dev_dbg() resolves to a no-op. Also, when debugging is disabled, don't set DEBUG at all instead of setting it to 0, to comply with what the kernel headers expect. Signed-off-by: Jean Delvare <khali@linux-fr.org> Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: "Antonino A. Daplas" <adaplas@pol.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/video/aty/radeonfb.h')
-rw-r--r--drivers/video/aty/radeonfb.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/drivers/video/aty/radeonfb.h b/drivers/video/aty/radeonfb.h
index 5eac1ce52e72..8215ca0555c2 100644
--- a/drivers/video/aty/radeonfb.h
+++ b/drivers/video/aty/radeonfb.h
@@ -1,6 +1,10 @@
1#ifndef __RADEONFB_H__ 1#ifndef __RADEONFB_H__
2#define __RADEONFB_H__ 2#define __RADEONFB_H__
3 3
4#ifdef CONFIG_FB_RADEON_DEBUG
5#define DEBUG 1
6#endif
7
4#include <linux/module.h> 8#include <linux/module.h>
5#include <linux/kernel.h> 9#include <linux/kernel.h>
6#include <linux/sched.h> 10#include <linux/sched.h>
@@ -367,13 +371,7 @@ struct radeonfb_info {
367/* 371/*
368 * Debugging stuffs 372 * Debugging stuffs
369 */ 373 */
370#ifdef CONFIG_FB_RADEON_DEBUG 374#ifdef DEBUG
371#define DEBUG 1
372#else
373#define DEBUG 0
374#endif
375
376#if DEBUG
377#define RTRACE printk 375#define RTRACE printk
378#else 376#else
379#define RTRACE if(0) printk 377#define RTRACE if(0) printk