From: Yunkang Tang Date: Wed, 16 Oct 2013 06:50:38 +0000 (-0700) Subject: Input: ALPS - change secondary device's name X-Git-Tag: accepted/tizen/common/20141203.182822~153^2~39^2~16 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9354f263383975ed5e11eb5a9cf21f2596f95be2;p=platform%2Fkernel%2Flinux-arm64.git Input: ALPS - change secondary device's name Change the dev2's name from "PS/2 Mouse" to "ALPS PS/2 Device". Signed-off-by: Yunkang Tang Signed-off-by: Dmitry Torokhov --- diff --git a/drivers/input/mouse/alps.c b/drivers/input/mouse/alps.c index 7c5d72a..ca7a26f 100644 --- a/drivers/input/mouse/alps.c +++ b/drivers/input/mouse/alps.c @@ -1792,7 +1792,7 @@ int alps_init(struct psmouse *psmouse) snprintf(priv->phys, sizeof(priv->phys), "%s/input1", psmouse->ps2dev.serio->phys); dev2->phys = priv->phys; dev2->name = (priv->flags & ALPS_DUALPOINT) ? - "DualPoint Stick" : "PS/2 Mouse"; + "DualPoint Stick" : "ALPS PS/2 Device"; dev2->id.bustype = BUS_I8042; dev2->id.vendor = 0x0002; dev2->id.product = PSMOUSE_ALPS;