summaryrefslogtreecommitdiff
path: root/arch/arm/mach-davinci/pdata-quirks.c
diff options
context:
space:
mode:
authorKevin Hilman <khilman@baylibre.com>2017-06-09 20:21:10 +0300
committerSekhar Nori <nsekhar@ti.com>2017-06-15 16:48:24 +0300
commit231ce279e6e37960f8c61d99f86e4937733ed96b (patch)
tree9bafd1aa68435018983cc1bef04f358918c6e91a /arch/arm/mach-davinci/pdata-quirks.c
parent14ff86bc76be9b5c96f06ce141c8bdd612dafd64 (diff)
downloadlinux-231ce279e6e37960f8c61d99f86e4937733ed96b.tar.xz
ARM: davinci: fix const warnings
After VPIF was converted to enable getting subdevs from DT, the pdata is no longer const, so remove these to avoid compiler warnings. Signed-off-by: Kevin Hilman <khilman@baylibre.com> [nsekhar@ti.com: minor commit message fixup] Signed-off-by: Sekhar Nori <nsekhar@ti.com>
Diffstat (limited to 'arch/arm/mach-davinci/pdata-quirks.c')
-rw-r--r--arch/arm/mach-davinci/pdata-quirks.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-davinci/pdata-quirks.c b/arch/arm/mach-davinci/pdata-quirks.c
index 329f5402ad1d..4858b1cdf31b 100644
--- a/arch/arm/mach-davinci/pdata-quirks.c
+++ b/arch/arm/mach-davinci/pdata-quirks.c
@@ -33,7 +33,7 @@ static struct tvp514x_platform_data tvp5146_pdata = {
#define TVP514X_STD_ALL (V4L2_STD_NTSC | V4L2_STD_PAL)
-static const struct vpif_input da850_ch0_inputs[] = {
+static struct vpif_input da850_ch0_inputs[] = {
{
.input = {
.index = 0,
@@ -48,7 +48,7 @@ static const struct vpif_input da850_ch0_inputs[] = {
},
};
-static const struct vpif_input da850_ch1_inputs[] = {
+static struct vpif_input da850_ch1_inputs[] = {
{
.input = {
.index = 0,