diff options
Diffstat (limited to 'drivers/usb/misc/cypress_cy7c63.c')
| -rw-r--r-- | drivers/usb/misc/cypress_cy7c63.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/usb/misc/cypress_cy7c63.c b/drivers/usb/misc/cypress_cy7c63.c index 937940404b7..5720bfef6a3 100644 --- a/drivers/usb/misc/cypress_cy7c63.c +++ b/drivers/usb/misc/cypress_cy7c63.c @@ -278,9 +278,9 @@ static int __init cypress_init(void)  	/* register this driver with the USB subsystem */  	result = usb_register(&cypress_driver); -	if (result) { -		err("Function usb_register failed! Error number: %d\n", result); -	} +	if (result) +		printk(KERN_ERR KBUILD_MODNAME ": usb_register failed! " +		       "Error number: %d\n", result);  	return result;  }  | 
