This patch adds KERN_ constants to all of the printk()'s that need them in drivers/video/console/mdacon.c Signed-off-by: James Nelson Signed-off-by: Domen Puncer --- kj-domen/drivers/video/console/mdacon.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/video/console/mdacon.c~printk-drivers_video_console_mdacon drivers/video/console/mdacon.c --- kj/drivers/video/console/mdacon.c~printk-drivers_video_console_mdacon 2005-03-02 10:44:14.000000000 +0100 +++ kj-domen/drivers/video/console/mdacon.c 2005-03-02 10:44:14.000000000 +0100 @@ -326,7 +326,7 @@ static const char __init *mdacon_startup mda_type_name = "MDA"; if (! mda_detect()) { - printk("mdacon: MDA card not detected.\n"); + pr_info("mdacon: MDA card not detected.\n"); return NULL; } @@ -337,7 +337,7 @@ static const char __init *mdacon_startup /* cursor looks ugly during boot-up, so turn it off */ mda_set_cursor(mda_vram_len - 1); - printk("mdacon: %s with %ldK of memory detected.\n", + pr_info("mdacon: %s with %ldK of memory detected.\n", mda_type_name, mda_vram_len/1024); return "MDA-2"; _