mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-25 21:24:08 +08:00
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>
This commit is contained in:
parent
89ac34aaf5
commit
44ce8fc476
@ -37,7 +37,7 @@
|
||||
|
||||
#define MODULE_NAME "davinci-vpbe-osd"
|
||||
|
||||
static struct platform_device_id vpbe_osd_devtype[] = {
|
||||
static const struct platform_device_id vpbe_osd_devtype[] = {
|
||||
{
|
||||
.name = DM644X_VPBE_OSD_SUBDEV_NAME,
|
||||
.driver_data = VPBE_VERSION_1,
|
||||
|
@ -36,7 +36,7 @@
|
||||
|
||||
#define MODULE_NAME "davinci-vpbe-venc"
|
||||
|
||||
static struct platform_device_id vpbe_venc_devtype[] = {
|
||||
static const struct platform_device_id vpbe_venc_devtype[] = {
|
||||
{
|
||||
.name = DM644X_VPBE_VENC_SUBDEV_NAME,
|
||||
.driver_data = VPBE_VERSION_1,
|
||||
|
Loading…
Reference in New Issue
Block a user