Input: psmouse - remove unneeded '\n' from psmouse.proto parameter
The get parameter function should return a string without a life-feed. Otherwise you'll see additional empty line in sysfs parameters file. Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
This commit is contained in:
committed by
Dmitry Torokhov
parent
d4119bdacf
commit
3d4c3aa938
@@ -1673,7 +1673,7 @@ static int psmouse_get_maxproto(char *buffer, struct kernel_param *kp)
|
|||||||
{
|
{
|
||||||
int type = *((unsigned int *)kp->arg);
|
int type = *((unsigned int *)kp->arg);
|
||||||
|
|
||||||
return sprintf(buffer, "%s\n", psmouse_protocol_by_type(type)->name);
|
return sprintf(buffer, "%s", psmouse_protocol_by_type(type)->name);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int __init psmouse_init(void)
|
static int __init psmouse_init(void)
|
||||||
|
Reference in New Issue
Block a user