diff options
| author | Joe Perches <joe@perches.com> | 2010-11-29 23:33:07 -0800 | 
|---|---|---|
| committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2010-11-30 23:10:26 -0800 | 
| commit | da0c490115de026618a7fdcd886602da44392a50 (patch) | |
| tree | b61dae8d525fa765151adb8df5456a1e9880a773 /drivers/input/mousedev.c | |
| parent | 4eb3c30b2e034b673df3e8f21b497e39f3911a02 (diff) | |
| download | olio-linux-3.10-da0c490115de026618a7fdcd886602da44392a50.tar.xz olio-linux-3.10-da0c490115de026618a7fdcd886602da44392a50.zip  | |
Input: use pr_fmt and pr_<level>
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/mousedev.c')
| -rw-r--r-- | drivers/input/mousedev.c | 10 | 
1 files changed, 6 insertions, 4 deletions
diff --git a/drivers/input/mousedev.c b/drivers/input/mousedev.c index 2a00ddf4f23..7630273e947 100644 --- a/drivers/input/mousedev.c +++ b/drivers/input/mousedev.c @@ -9,6 +9,8 @@   * the Free Software Foundation.   */ +#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt +  #define MOUSEDEV_MINOR_BASE	32  #define MOUSEDEV_MINORS		32  #define MOUSEDEV_MIX		31 @@ -977,7 +979,7 @@ static int mousedev_connect(struct input_handler *handler,  			break;  	if (minor == MOUSEDEV_MINORS) { -		printk(KERN_ERR "mousedev: no more free mousedev devices\n"); +		pr_err("no more free mousedev devices\n");  		return -ENFILE;  	} @@ -1087,13 +1089,13 @@ static int __init mousedev_init(void)  #ifdef CONFIG_INPUT_MOUSEDEV_PSAUX  	error = misc_register(&psaux_mouse);  	if (error) -		printk(KERN_WARNING "mice: could not register psaux device, " -			"error: %d\n", error); +		pr_warning("could not register psaux device, error: %d\n", +			   error);  	else  		psaux_registered = 1;  #endif -	printk(KERN_INFO "mice: PS/2 mouse device common for all mice\n"); +	pr_info("PS/2 mouse device common for all mice\n");  	return 0;  }  |