Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

media: davinci: constify platform_device_id

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

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Acked-by: Lad, Prabhakar <prabhakar.csengg@gmail.com>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>

authored by

Arvind Yadav and committed by
Mauro Carvalho Chehab
44ce8fc4 89ac34aa

+2 -2
+1 -1
drivers/media/platform/davinci/vpbe_osd.c
··· 37 37 38 38 #define MODULE_NAME "davinci-vpbe-osd" 39 39 40 - static struct platform_device_id vpbe_osd_devtype[] = { 40 + static const struct platform_device_id vpbe_osd_devtype[] = { 41 41 { 42 42 .name = DM644X_VPBE_OSD_SUBDEV_NAME, 43 43 .driver_data = VPBE_VERSION_1,
+1 -1
drivers/media/platform/davinci/vpbe_venc.c
··· 36 36 37 37 #define MODULE_NAME "davinci-vpbe-venc" 38 38 39 - static struct platform_device_id vpbe_venc_devtype[] = { 39 + static const struct platform_device_id vpbe_venc_devtype[] = { 40 40 { 41 41 .name = DM644X_VPBE_VENC_SUBDEV_NAME, 42 42 .driver_data = VPBE_VERSION_1,