Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1548338 > unrolled thread
| Started by | Dmitry Torokhov <dmitry.torokhov@gmail.com> |
|---|---|
| First post | 2016-12-29 19:10 +0100 |
| Last post | 2017-01-02 10:50 +0100 |
| Articles | 4 — 4 participants |
Back to article view | Back to linux.kernel
[PATCH] Input: mousedev - stop offering PS/2 to userspace by default Dmitry Torokhov <dmitry.torokhov@gmail.com> - 2016-12-29 19:10 +0100
Re: [PATCH] Input: mousedev - stop offering PS/2 to userspace by default Jiri Kosina <jikos@kernel.org> - 2016-12-29 20:10 +0100
Re: [PATCH] Input: mousedev - stop offering PS/2 to userspace by default Peter Hutterer <peter.hutterer@who-t.net> - 2016-12-30 02:30 +0100
Re: [PATCH] Input: mousedev - stop offering PS/2 to userspace by default Benjamin Tissoires <benjamin.tissoires@redhat.com> - 2017-01-02 10:50 +0100
| From | Dmitry Torokhov <dmitry.torokhov@gmail.com> |
|---|---|
| Date | 2016-12-29 19:10 +0100 |
| Subject | [PATCH] Input: mousedev - stop offering PS/2 to userspace by default |
| Message-ID | <sTNjk-1y0-11@gated-at.bofh.it> |
Evdev interface has been available for many years and by now everyone is switched to using it, so let's stop offering /dev/input/mouseN and /dev/psaux by default. Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> --- drivers/input/Kconfig | 3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/input/Kconfig b/drivers/input/Kconfig index 6261874..ff80377 100644 --- a/drivers/input/Kconfig +++ b/drivers/input/Kconfig @@ -94,7 +94,6 @@ comment "Userland interfaces" config INPUT_MOUSEDEV tristate "Mouse interface" - default y help Say Y here if you want your mouse to be accessible as char devices 13:32+ - /dev/input/mouseX and 13:63 - /dev/input/mice as an @@ -109,7 +108,6 @@ config INPUT_MOUSEDEV config INPUT_MOUSEDEV_PSAUX bool "Provide legacy /dev/psaux device" - default y depends on INPUT_MOUSEDEV help Say Y here if you want your mouse also be accessible as char device @@ -118,7 +116,6 @@ config INPUT_MOUSEDEV_PSAUX If unsure, say Y. - config INPUT_MOUSEDEV_SCREEN_X int "Horizontal screen resolution" depends on INPUT_MOUSEDEV -- 2.8.0.rc3.226.g39d4020 -- Dmitry
[toc] | [next] | [standalone]
| From | Jiri Kosina <jikos@kernel.org> |
|---|---|
| Date | 2016-12-29 20:10 +0100 |
| Subject | Re: [PATCH] Input: mousedev - stop offering PS/2 to userspace by default |
| Message-ID | <sTOfo-28p-11@gated-at.bofh.it> |
| In reply to | #1548338 |
On Thu, 29 Dec 2016, Dmitry Torokhov wrote: > Evdev interface has been available for many years and by now everyone > is switched to using it, so let's stop offering /dev/input/mouseN > and /dev/psaux by default. > > Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> Makes sense to me. Acked-by: Jiri Kosina <jkosina@suse.cz> Thanks, -- Jiri Kosina SUSE Labs
[toc] | [prev] | [next] | [standalone]
| From | Peter Hutterer <peter.hutterer@who-t.net> |
|---|---|
| Date | 2016-12-30 02:30 +0100 |
| Subject | Re: [PATCH] Input: mousedev - stop offering PS/2 to userspace by default |
| Message-ID | <sTUb8-63e-17@gated-at.bofh.it> |
| In reply to | #1548338 |
On 30/12/2016 04:07 , Dmitry Torokhov wrote: > Evdev interface has been available for many years and by now everyone > is switched to using it, so let's stop offering /dev/input/mouseN > and /dev/psaux by default. > > Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> Acked-by: Peter Hutterer <peter.hutterer@who-t.net> Cheers, Peter > --- > drivers/input/Kconfig | 3 --- > 1 file changed, 3 deletions(-) > > diff --git a/drivers/input/Kconfig b/drivers/input/Kconfig > index 6261874..ff80377 100644 > --- a/drivers/input/Kconfig > +++ b/drivers/input/Kconfig > @@ -94,7 +94,6 @@ comment "Userland interfaces" > > config INPUT_MOUSEDEV > tristate "Mouse interface" > - default y > help > Say Y here if you want your mouse to be accessible as char devices > 13:32+ - /dev/input/mouseX and 13:63 - /dev/input/mice as an > @@ -109,7 +108,6 @@ config INPUT_MOUSEDEV > > config INPUT_MOUSEDEV_PSAUX > bool "Provide legacy /dev/psaux device" > - default y > depends on INPUT_MOUSEDEV > help > Say Y here if you want your mouse also be accessible as char device > @@ -118,7 +116,6 @@ config INPUT_MOUSEDEV_PSAUX > > If unsure, say Y. > > - > config INPUT_MOUSEDEV_SCREEN_X > int "Horizontal screen resolution" > depends on INPUT_MOUSEDEV >
[toc] | [prev] | [next] | [standalone]
| From | Benjamin Tissoires <benjamin.tissoires@redhat.com> |
|---|---|
| Date | 2017-01-02 10:50 +0100 |
| Subject | Re: [PATCH] Input: mousedev - stop offering PS/2 to userspace by default |
| Message-ID | <sV7pD-4Sp-5@gated-at.bofh.it> |
| In reply to | #1548338 |
On Dec 29 2016 or thereabouts, Dmitry Torokhov wrote: > Evdev interface has been available for many years and by now everyone > is switched to using it, so let's stop offering /dev/input/mouseN > and /dev/psaux by default. > > Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> Makes sense to me Acked-by: Benjamin Tissoires <benjamin.tissoires@redhat.com> Cheers, Benjamin > --- > drivers/input/Kconfig | 3 --- > 1 file changed, 3 deletions(-) > > diff --git a/drivers/input/Kconfig b/drivers/input/Kconfig > index 6261874..ff80377 100644 > --- a/drivers/input/Kconfig > +++ b/drivers/input/Kconfig > @@ -94,7 +94,6 @@ comment "Userland interfaces" > > config INPUT_MOUSEDEV > tristate "Mouse interface" > - default y > help > Say Y here if you want your mouse to be accessible as char devices > 13:32+ - /dev/input/mouseX and 13:63 - /dev/input/mice as an > @@ -109,7 +108,6 @@ config INPUT_MOUSEDEV > > config INPUT_MOUSEDEV_PSAUX > bool "Provide legacy /dev/psaux device" > - default y > depends on INPUT_MOUSEDEV > help > Say Y here if you want your mouse also be accessible as char device > @@ -118,7 +116,6 @@ config INPUT_MOUSEDEV_PSAUX > > If unsure, say Y. > > - > config INPUT_MOUSEDEV_SCREEN_X > int "Horizontal screen resolution" > depends on INPUT_MOUSEDEV > -- > 2.8.0.rc3.226.g39d4020 > > > -- > Dmitry
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web