From: Arvind Yadav <arvind.yadav.cs@gmail.com>
To: b.zolnierkie@samsung.com, paulus@samba.org,
benh@kernel.crashing.org, adaplas@gmail.com, mbroemme@libmpq.org,
FlorianSchandinat@gmx.de
Cc: linux-fbdev@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [PATCH 00/28] constify fbdev pci_device_id.
Date: Thu, 20 Jul 2017 23:09:25 +0530 [thread overview]
Message-ID: <1500572393-18844-1-git-send-email-arvind.yadav.cs@gmail.com> (raw)
pci_device_id are not supposed to change at runtime. All functions
working with pci_device_id provided by <linux/pci.h> work with
const pci_device_id. So mark the non-const structs as const.
Arvind Yadav (28):
[PATCH 01/28] video: fbdev: radeon: constify pci_device_id.
[PATCH 02/28] video: fbdev: atyfb: constify pci_device_id.
[PATCH 03/28] video: fbdev: aty128fb: constify pci_device_id.
[PATCH 04/28] video: fbdev: sunxvr2500: constify pci_device_id.
[PATCH 05/28] video: fbdev: asiliantfb: constify pci_device_id.
[PATCH 06/28] video: fbdev: intelfb: constify pci_device_id.
[PATCH 07/28] video: fbdev: pvr2fb: constify pci_device_id.
[PATCH 08/28] video: fbdev: tridentfb: constify pci_device_id.
[PATCH 09/28] video: fbdev: skeletonfb: constify pci_device_id.
[PATCH 10/28] video: fbdev: via: constify pci_device_id.
[PATCH 11/28] video: fbdev: savage: constify pci_device_id.
[PATCH 12/28] video: fbdev: riva: constify pci_device_id.
[PATCH 13/28] video: fbdev: i810: constify pci_device_id.
[PATCH 14/28] video: fbdev: arkfb: constify pci_device_id.
[PATCH 15/28] video: fbdev: kyro: constify pci_device_id.
[PATCH 16/28] video: fbdev: vermilion: constify pci_device_id.
[PATCH 17/28] video: fbdev: nvidia: constify pci_device_id.
[PATCH 18/28] video: fbdev: mb862xx: constify pci_device_id.
[PATCH 19/28] video: fbdev: tdfx: constify pci_device_id.
[PATCH 20/28] video: fbdev: sunxvr500: constify pci_device_id.
[PATCH 21/28] video: fbdev: imsttfb: constify pci_device_id.
[PATCH 22/28] video: fbdev: pm2fb: constify pci_device_id.
[PATCH 23/28] video: fbdev: gxfb: constify pci_device_id.
[PATCH 24/28] video: fbdev: neofb: constify pci_device_id.
[PATCH 25/28] video: fbdev: s3fb: constify pci_device_id.
[PATCH 26/28] video: fbdev: pm3fb: constify pci_device_id.
[PATCH 27/28] video: fbdev: matroxfb: constify pci_device_id.
[PATCH 28/28] video: fbdev: vt8623fb: constify pci_device_id.
drivers/video/fbdev/arkfb.c | 2 +-
drivers/video/fbdev/asiliantfb.c | 2 +-
drivers/video/fbdev/aty/aty128fb.c | 2 +-
drivers/video/fbdev/aty/atyfb_base.c | 2 +-
drivers/video/fbdev/aty/radeon_base.c | 2 +-
drivers/video/fbdev/geode/gxfb_core.c | 2 +-
drivers/video/fbdev/i810/i810_main.c | 2 +-
drivers/video/fbdev/imsttfb.c | 2 +-
drivers/video/fbdev/intelfb/intelfbdrv.c | 2 +-
drivers/video/fbdev/kyro/fbdev.c | 2 +-
drivers/video/fbdev/matrox/matroxfb_base.c | 4 ++--
drivers/video/fbdev/mb862xx/mb862xxfbdrv.c | 2 +-
drivers/video/fbdev/neofb.c | 2 +-
drivers/video/fbdev/nvidia/nvidia.c | 2 +-
drivers/video/fbdev/pm2fb.c | 2 +-
drivers/video/fbdev/pm3fb.c | 2 +-
drivers/video/fbdev/pvr2fb.c | 2 +-
drivers/video/fbdev/riva/fbdev.c | 2 +-
drivers/video/fbdev/s3fb.c | 2 +-
drivers/video/fbdev/savage/savagefb_driver.c | 2 +-
drivers/video/fbdev/skeletonfb.c | 2 +-
drivers/video/fbdev/sunxvr2500.c | 2 +-
drivers/video/fbdev/sunxvr500.c | 2 +-
drivers/video/fbdev/tdfxfb.c | 2 +-
drivers/video/fbdev/tridentfb.c | 2 +-
drivers/video/fbdev/vermilion/vermilion.c | 2 +-
drivers/video/fbdev/via/via-core.c | 2 +-
drivers/video/fbdev/vt8623fb.c | 2 +-
28 files changed, 29 insertions(+), 29 deletions(-)
--
2.7.4
next reply other threads:[~2017-07-20 17:40 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <CGME20170720174007epcas3p2b1560c96711fde38a06d74d24493f952@epcas3p2.samsung.com>
2017-07-20 17:39 ` Arvind Yadav [this message]
2017-07-20 17:39 ` [PATCH 01/28] video: fbdev: radeon: constify pci_device_id Arvind Yadav
2017-07-20 17:39 ` [PATCH 02/28] video: fbdev: atyfb: " Arvind Yadav
2017-07-20 17:39 ` [PATCH 03/28] video: fbdev: aty128fb: " Arvind Yadav
2017-07-20 17:39 ` [PATCH 04/28] video: fbdev: sunxvr2500: " Arvind Yadav
2017-07-20 17:39 ` [PATCH 05/28] video: fbdev: asiliantfb: " Arvind Yadav
2017-07-20 17:39 ` [PATCH 06/28] video: fbdev: intelfb: " Arvind Yadav
2017-07-20 17:39 ` [PATCH 07/28] video: fbdev: pvr2fb: " Arvind Yadav
2017-07-20 17:39 ` [PATCH 08/28] video: fbdev: tridentfb: " Arvind Yadav
2017-07-20 17:39 ` [PATCH 09/28] video: fbdev: skeletonfb: " Arvind Yadav
2017-07-20 17:39 ` [PATCH 10/28] video: fbdev: via: " Arvind Yadav
2017-07-20 17:39 ` [PATCH 11/28] video: fbdev: savage: " Arvind Yadav
2017-07-20 17:39 ` [PATCH 12/28] video: fbdev: riva: " Arvind Yadav
2017-07-20 17:39 ` [PATCH 13/28] video: fbdev: i810: " Arvind Yadav
2017-07-20 17:39 ` [PATCH 14/28] video: fbdev: arkfb: " Arvind Yadav
2017-07-20 17:39 ` [PATCH 15/28] video: fbdev: kyro: " Arvind Yadav
2017-07-20 17:39 ` [PATCH 16/28] video: fbdev: vermilion: " Arvind Yadav
2017-07-20 17:39 ` [PATCH 17/28] video: fbdev: nvidia: " Arvind Yadav
2017-07-20 17:39 ` [PATCH 18/28] video: fbdev: mb862xx: " Arvind Yadav
2017-07-20 17:39 ` [PATCH 19/28] video: fbdev: tdfx: " Arvind Yadav
2017-07-20 17:39 ` [PATCH 20/28] video: fbdev: sunxvr500: " Arvind Yadav
2017-07-20 17:39 ` [PATCH 21/28] video: fbdev: imsttfb: " Arvind Yadav
2017-07-20 17:39 ` [PATCH 22/28] video: fbdev: pm2fb: " Arvind Yadav
2017-07-20 17:39 ` [PATCH 23/28] video: fbdev: gxfb: " Arvind Yadav
2017-07-20 17:39 ` [PATCH 24/28] video: fbdev: neofb: " Arvind Yadav
2017-07-20 17:39 ` [PATCH 25/28] video: fbdev: s3fb: " Arvind Yadav
2017-07-20 17:39 ` [PATCH 26/28] video: fbdev: pm3fb: " Arvind Yadav
2017-07-20 17:39 ` [PATCH 27/28] video: fbdev: matroxfb: " Arvind Yadav
2017-07-20 17:39 ` [PATCH 28/28] video: fbdev: vt8623fb: " Arvind Yadav
2017-08-01 15:37 ` [PATCH 00/28] constify fbdev pci_device_id Bartlomiej Zolnierkiewicz
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1500572393-18844-1-git-send-email-arvind.yadav.cs@gmail.com \
--to=arvind.yadav.cs@gmail.com \
--cc=FlorianSchandinat@gmx.de \
--cc=adaplas@gmail.com \
--cc=b.zolnierkie@samsung.com \
--cc=benh@kernel.crashing.org \
--cc=linux-fbdev@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mbroemme@libmpq.org \
--cc=paulus@samba.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®