linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/30] constify input serio_device_id
@ 2017-08-17 11:38 Arvind Yadav
  2017-08-17 11:38 ` [PATCH 01/30] Input: iforce: constify serio_device_id Arvind Yadav
                   ` (30 more replies)
  0 siblings, 31 replies; 32+ messages in thread
From: Arvind Yadav @ 2017-08-17 11:38 UTC (permalink / raw)
  To: dmitry.torokhov; +Cc: linux-kernel, linux-input

serio_device_id are not supposed to change at runtime. All functions
working with serio_device_id provided by <linux/serio.h> work with
const serio_device_id. So mark the non-const structs as const.

Arvind Yadav (30):
  [PATCH 01/30] Input: iforce: constify serio_device_id
  [PATCH 02/30] Input: magellan: constify serio_device_id
  [PATCH 03/30] Input: spaceball: constify serio_device_id
  [PATCH 04/30] Input: spaceorb: constify serio_device_id
  [PATCH 05/30] Input: stinger: constify serio_device_id
  [PATCH 06/30] Input: twidjoy: constify serio_device_id
  [PATCH 07/30] Input: warrior: constify serio_device_id
  [PATCH 08/30] Input: zhenhua: constify serio_device_id
  [PATCH 09/30] Input: iatkbd: constify serio_device_id
  [PATCH 10/30] Input: hil_kbd: constify serio_device_id
  [PATCH 11/30] Input: lkkbd: constify serio_device_id
  [PATCH 12/30] Input: newtonkbd: constify serio_device_id
  [PATCH 13/30] Input: stowaway: constify serio_device_id
  [PATCH 14/30] Input: sunkbd: constify serio_device_id
  [PATCH 15/30] Input: xtkbd: constify serio_device_id
  [PATCH 16/30] Input: serio: constify serio_device_id
  [PATCH 17/30] Input: wacom_serial4: constify serio_device_id
  [PATCH 18/30] Input: dynapro: constify serio_device_id
  [PATCH 19/30] Input: elo: constify serio_device_id
  [PATCH 20/30] Input: fujitsu_ts: constify serio_device_id
  [PATCH 21/30] Input: gunze: constify serio_device_id
  [PATCH 22/30] Input: hampshire: constify serio_device_id
  [PATCH 23/30] Input: inexio: constify serio_device_id
  [PATCH 24/30] Input: mtouch: constify serio_device_id
  [PATCH 25/30] Input: penmount: constify serio_device_id
  [PATCH 26/30] Input: touchit213: constify serio_device_id
  [PATCH 27/30] Input: touchright: constify serio_device_id
  [PATCH 28/30] Input: touchwin: constify serio_device_id
  [PATCH 29/30] Input: tsc40: constify serio_device_id
  [PATCH 30/30] Input: wacom_w8001: constify serio_device_id

 drivers/input/joystick/iforce/iforce-serio.c | 2 +-
 drivers/input/joystick/magellan.c            | 2 +-
 drivers/input/joystick/spaceball.c           | 2 +-
 drivers/input/joystick/spaceorb.c            | 2 +-
 drivers/input/joystick/stinger.c             | 2 +-
 drivers/input/joystick/twidjoy.c             | 2 +-
 drivers/input/joystick/warrior.c             | 2 +-
 drivers/input/joystick/zhenhua.c             | 2 +-
 drivers/input/keyboard/atkbd.c               | 2 +-
 drivers/input/keyboard/hil_kbd.c             | 2 +-
 drivers/input/keyboard/lkkbd.c               | 2 +-
 drivers/input/keyboard/newtonkbd.c           | 2 +-
 drivers/input/keyboard/stowaway.c            | 2 +-
 drivers/input/keyboard/sunkbd.c              | 2 +-
 drivers/input/keyboard/xtkbd.c               | 2 +-
 drivers/input/serio/serio_raw.c              | 2 +-
 drivers/input/tablet/wacom_serial4.c         | 2 +-
 drivers/input/touchscreen/dynapro.c          | 2 +-
 drivers/input/touchscreen/elo.c              | 2 +-
 drivers/input/touchscreen/fujitsu_ts.c       | 2 +-
 drivers/input/touchscreen/gunze.c            | 2 +-
 drivers/input/touchscreen/hampshire.c        | 2 +-
 drivers/input/touchscreen/inexio.c           | 2 +-
 drivers/input/touchscreen/mtouch.c           | 2 +-
 drivers/input/touchscreen/penmount.c         | 2 +-
 drivers/input/touchscreen/touchit213.c       | 2 +-
 drivers/input/touchscreen/touchright.c       | 2 +-
 drivers/input/touchscreen/touchwin.c         | 2 +-
 drivers/input/touchscreen/tsc40.c            | 2 +-
 drivers/input/touchscreen/wacom_w8001.c      | 2 +-
 30 files changed, 30 insertions(+), 30 deletions(-)

-- 
2.7.4


^ permalink raw reply	[flat|nested] 32+ messages in thread

end of thread, other threads:[~2017-08-20 16:31 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-17 11:38 [PATCH 00/30] constify input serio_device_id Arvind Yadav
2017-08-17 11:38 ` [PATCH 01/30] Input: iforce: constify serio_device_id Arvind Yadav
2017-08-17 11:38 ` [PATCH 02/30] Input: magellan: " Arvind Yadav
2017-08-17 11:38 ` [PATCH 03/30] Input: spaceball: " Arvind Yadav
2017-08-17 11:38 ` [PATCH 04/30] Input: spaceorb: " Arvind Yadav
2017-08-17 11:38 ` [PATCH 05/30] Input: stinger: " Arvind Yadav
2017-08-17 11:38 ` [PATCH 06/30] Input: twidjoy: " Arvind Yadav
2017-08-17 11:38 ` [PATCH 07/30] Input: warrior: " Arvind Yadav
2017-08-17 11:38 ` [PATCH 08/30] Input: zhenhua: " Arvind Yadav
2017-08-17 11:38 ` [PATCH 09/30] Input: iatkbd: " Arvind Yadav
2017-08-17 11:38 ` [PATCH 10/30] Input: hil_kbd: " Arvind Yadav
2017-08-17 11:38 ` [PATCH 11/30] Input: lkkbd: " Arvind Yadav
2017-08-17 11:38 ` [PATCH 12/30] Input: newtonkbd: " Arvind Yadav
2017-08-17 11:38 ` [PATCH 13/30] Input: stowaway: " Arvind Yadav
2017-08-17 11:38 ` [PATCH 14/30] Input: sunkbd: " Arvind Yadav
2017-08-17 11:38 ` [PATCH 15/30] Input: xtkbd: " Arvind Yadav
2017-08-17 11:38 ` [PATCH 16/30] Input: serio: " Arvind Yadav
2017-08-17 11:38 ` [PATCH 17/30] Input: wacom_serial4: " Arvind Yadav
2017-08-17 11:38 ` [PATCH 18/30] Input: dynapro: " Arvind Yadav
2017-08-17 11:38 ` [PATCH 19/30] Input: elo: " Arvind Yadav
2017-08-17 11:38 ` [PATCH 20/30] Input: fujitsu_ts: " Arvind Yadav
2017-08-17 11:38 ` [PATCH 21/30] Input: gunze: " Arvind Yadav
2017-08-17 11:38 ` [PATCH 22/30] Input: hampshire: " Arvind Yadav
2017-08-17 11:38 ` [PATCH 23/30] Input: inexio: " Arvind Yadav
2017-08-17 11:38 ` [PATCH 24/30] Input: mtouch: " Arvind Yadav
2017-08-17 11:38 ` [PATCH 25/30] Input: penmount: " Arvind Yadav
2017-08-17 11:38 ` [PATCH 26/30] Input: touchit213: " Arvind Yadav
2017-08-17 11:38 ` [PATCH 27/30] Input: touchright: " Arvind Yadav
2017-08-17 11:38 ` [PATCH 28/30] Input: touchwin: " Arvind Yadav
2017-08-17 11:38 ` [PATCH 29/30] Input: tsc40: " Arvind Yadav
2017-08-17 11:38 ` [PATCH 30/30] Input: wacom_w8001: " Arvind Yadav
2017-08-20 16:31 ` [PATCH 00/30] constify input serio_device_id Dmitry Torokhov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).