Re: [PATCH] Input: psmouse - retry getid command in psmouse_probe()

2013-02-19 Thread Dmitry Torokhov
Hi Chung-yih, On Mon, Feb 18, 2013 at 05:45:07PM +0800, Chung-Yih Wang (王崇懿) wrote: > Yes, I could add CONFIG_MOUSE_PS2_SYNAPTICS for the change as we only > need it for synaptics touchpad/touchpoint on lenovo's machines. > I do not think it will solve anything as all distributions have

Re: [PATCH] Input: psmouse - retry getid command in psmouse_probe()

2013-02-19 Thread Dmitry Torokhov
Hi Chung-yih, On Mon, Feb 18, 2013 at 05:45:07PM +0800, Chung-Yih Wang (王崇懿) wrote: Yes, I could add CONFIG_MOUSE_PS2_SYNAPTICS for the change as we only need it for synaptics touchpad/touchpoint on lenovo's machines. I do not think it will solve anything as all distributions have

Re: [PATCH] Input: psmouse - retry getid command in psmouse_probe()

2013-02-18 Thread 王崇懿
Yes, I could add CONFIG_MOUSE_PS2_SYNAPTICS for the change as we only need it for synaptics touchpad/touchpoint on lenovo's machines. On Mon, Feb 18, 2013 at 5:26 PM, li guang wrote: > seems a special change for a special device > so, you may need to place this change with > corresponding

Re: [PATCH] Input: psmouse - retry getid command in psmouse_probe()

2013-02-18 Thread li guang
seems a special change for a special device so, you may need to place this change with corresponding CONFIG_xxx_xxx. generally, if command F2 failed, we will assume there's no ps2 device, it's normal, or do you have some materials(SPEC) to specify the change you have made? 在 2012-10-31三的 18:11

Re: [PATCH] Input: psmouse - retry getid command in psmouse_probe()

2013-02-18 Thread 王崇懿
Hi Dmitry and other maintainers, Not sure if you have any comment on the patch? As this patch tries to help some platforms (especially for lenovo's machines) to rescan the touchpad device after resuming from suspend if the first probe fails. Thanks, Chung-yih On Mon, Feb 18, 2013 at 4:17 PM,

Re: [PATCH] Input: psmouse - retry getid command in psmouse_probe()

2013-02-18 Thread 王崇懿
Hi Dmitry and other maintainers, Not sure if you have any comment on the patch? As this patch tries to help some platforms (especially for lenovo's machines) to rescan the touchpad device after resuming from suspend if the first probe fails. Thanks, Chung-yih On Mon, Feb 18, 2013 at 4:17 PM,

Re: [PATCH] Input: psmouse - retry getid command in psmouse_probe()

2013-02-18 Thread li guang
seems a special change for a special device so, you may need to place this change with corresponding CONFIG_xxx_xxx. generally, if command F2 failed, we will assume there's no ps2 device, it's normal, or do you have some materials(SPEC) to specify the change you have made? 在 2012-10-31三的 18:11

Re: [PATCH] Input: psmouse - retry getid command in psmouse_probe()

2013-02-18 Thread 王崇懿
Yes, I could add CONFIG_MOUSE_PS2_SYNAPTICS for the change as we only need it for synaptics touchpad/touchpoint on lenovo's machines. On Mon, Feb 18, 2013 at 5:26 PM, li guang lig.f...@cn.fujitsu.com wrote: seems a special change for a special device so, you may need to place this change with

[PATCH] Input: psmouse - retry getid command in psmouse_probe()

2012-10-31 Thread Chung-yih Wang
As the synaptics device may not respond to the first command in psmouse_probe when a machine is booting up, the patch gives a second probe if the first one fails. Signed-off-by: Chung-yih Wang --- drivers/input/mouse/psmouse-base.c | 13 +++-- 1 files changed, 11 insertions(+), 2

[PATCH] Input: psmouse - retry getid command in psmouse_probe()

2012-10-31 Thread Chung-yih Wang
As the synaptics device may not respond to the first command in psmouse_probe when a machine is booting up, the patch gives a second probe if the first one fails. Signed-off-by: Chung-yih Wang cyw...@chromium.org --- drivers/input/mouse/psmouse-base.c | 13 +++-- 1 files changed, 11