Add a KERN_WARNING constant to a printk() that is missing it, and add a driver prefix to another two in drivers/usb/atm/speedtch.c
Signed-off-by: James Nelson <[EMAIL PROTECTED]> diff -Nurp -x dontdiff-osdl --exclude='*~' linux-2.6.11-mm1-original/drivers/usb/atm/speedtch.c linux-2.6.11-mm1/drivers/usb/atm/speedtch.c --- linux-2.6.11-mm1-original/drivers/usb/atm/speedtch.c 2005-03-05 13:29:48.000000000 -0500 +++ linux-2.6.11-mm1/drivers/usb/atm/speedtch.c 2005-03-05 13:36:44.000000000 -0500 @@ -192,8 +192,8 @@ static int speedtch_set_swbuff(struct sp 0x32, 0x40, state ? 0x01 : 0x00, 0x00, NULL, 0, 100); if (ret < 0) { - printk("Warning: %sabling SW buffering: usb_control_msg returned %d\n", - state ? "En" : "Dis", ret); + printk(KERN_WARNING "%s: %sabling SW buffering: usb_control_msg returned %d\n", + speedtch_driver_name, state ? "En" : "Dis", ret); return ret; } @@ -252,7 +252,8 @@ static int speedtch_start_synchro(struct 0x12, 0xc0, 0x04, 0x00, buf, sizeof(buf), CTRL_TIMEOUT); if (ret < 0) { - printk(KERN_WARNING "SpeedTouch: Failed to start ADSL synchronisation: %d\n", ret); + printk(KERN_WARNING "%s: Failed to start ADSL synchronisation: %d\n", + speedtch_driver_name, ret); return ret; } @@ -374,8 +375,8 @@ static void speedtch_poll_status(struct ret = speedtch_get_status(instance, buf); if (ret) { - printk(KERN_WARNING - "SpeedTouch: Error %d fetching device status\n", ret); + printk(KERN_WARNING "%s: Error %d fetching device status\n", + speedtch_driver_name, ret); return; } - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/