This patch adds KERN_ constants to all of the printk()'s that need them in drivers/video/sstfb.c Signed-off-by: James Nelson Signed-off-by: Domen Puncer --- kj-domen/drivers/video/sstfb.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/video/sstfb.c~printk-drivers_video_sstfb drivers/video/sstfb.c --- kj/drivers/video/sstfb.c~printk-drivers_video_sstfb 2005-03-02 10:44:39.000000000 +0100 +++ kj-domen/drivers/video/sstfb.c 2005-03-02 10:44:39.000000000 +0100 @@ -790,7 +790,7 @@ static int sstfb_ioctl(struct inode *ino return -EFAULT; if (val > info->fix.smem_len) val = info->fix.smem_len; - printk("filling %#x \n", val); + printk(KERN_DEBUG "filling %#x \n", val); for (p=0 ; p> 6, info->screen_base + p); return 0; _