diff options
author | Jean Delvare <khali@linux-fr.org> | 2008-04-28 05:15:12 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-28 11:58:38 -0400 |
commit | b0313f89672eddf0188dac96bb8f83135510a45c (patch) | |
tree | f3e926c582c4bf28276ffaa79e735a79c3cf899f /drivers/video/aty/radeon_i2c.c | |
parent | e7a18c9c86d14247b514157aae60326d45695476 (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/radeon_i2c.c')
-rw-r--r-- | drivers/video/aty/radeon_i2c.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/video/aty/radeon_i2c.c b/drivers/video/aty/radeon_i2c.c index 7db9de681716..5254c7627a5a 100644 --- a/drivers/video/aty/radeon_i2c.c +++ b/drivers/video/aty/radeon_i2c.c | |||
@@ -1,3 +1,5 @@ | |||
1 | #include "radeonfb.h" | ||
2 | |||
1 | #include <linux/module.h> | 3 | #include <linux/module.h> |
2 | #include <linux/kernel.h> | 4 | #include <linux/kernel.h> |
3 | #include <linux/delay.h> | 5 | #include <linux/delay.h> |
@@ -11,7 +13,6 @@ | |||
11 | #include <asm/io.h> | 13 | #include <asm/io.h> |
12 | 14 | ||
13 | #include <video/radeon.h> | 15 | #include <video/radeon.h> |
14 | #include "radeonfb.h" | ||
15 | #include "../edid.h" | 16 | #include "../edid.h" |
16 | 17 | ||
17 | static void radeon_gpio_setscl(void* data, int state) | 18 | static void radeon_gpio_setscl(void* data, int state) |