This patch adds KERN_ constants to all of the printk()'s that need them in drivers/video/modedb.c Signed-off-by: James Nelson Signed-off-by: Domen Puncer --- kj-domen/drivers/video/modedb.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/video/modedb.c~printk-drivers_video_modedb drivers/video/modedb.c --- kj/drivers/video/modedb.c~printk-drivers_video_modedb 2005-03-02 10:44:28.000000000 +0100 +++ kj-domen/drivers/video/modedb.c 2005-03-02 10:44:28.000000000 +0100 @@ -24,7 +24,7 @@ ((v).xres == (x) && (v).yres == (y)) #ifdef DEBUG -#define DPRINTK(fmt, args...) printk("modedb %s: " fmt, __FUNCTION__ , ## args) +#define DPRINTK(fmt, args...) pr_debug("modedb %s: " fmt, __FUNCTION__ , ## args) #else #define DPRINTK(fmt, args...) #endif _