summaryrefslogtreecommitdiffstats
path: root/drivers/staging/most
diff options
context:
space:
mode:
authorArvind Yadav2017-08-13 13:37:35 +0200
committerGreg Kroah-Hartman2017-08-19 00:57:16 +0200
commit2c73e5761dcfd2f415ae22c4919490711547e11d (patch)
tree0eeee0cab32d9df69ce6047180159c710e675894 /drivers/staging/most
parentstaging: bcm2835-audio: make snd_pcm_hardware const (diff)
downloadkernel-qcow2-linux-2c73e5761dcfd2f415ae22c4919490711547e11d.tar.gz
kernel-qcow2-linux-2c73e5761dcfd2f415ae22c4919490711547e11d.tar.xz
kernel-qcow2-linux-2c73e5761dcfd2f415ae22c4919490711547e11d.zip
staging: most: hdm-dim2: 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> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/most')
-rw-r--r--drivers/staging/most/hdm-dim2/dim2_hdm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/most/hdm-dim2/dim2_hdm.c b/drivers/staging/most/hdm-dim2/dim2_hdm.c
index 4607d03c577b..b1567c80ecd3 100644
--- a/drivers/staging/most/hdm-dim2/dim2_hdm.c
+++ b/drivers/staging/most/hdm-dim2/dim2_hdm.c
@@ -894,7 +894,7 @@ static int dim2_remove(struct platform_device *pdev)
return 0;
}
-static struct platform_device_id dim2_id[] = {
+static const struct platform_device_id dim2_id[] = {
{ "medialb_dim2" },
{ }, /* Terminating entry */
};