summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBhumika Goyal2017-08-13 14:43:13 +0200
committerMauro Carvalho Chehab2017-08-20 14:05:25 +0200
commit92a6882eefda0ee34b9dfc029ee2ed2e91fac277 (patch)
treeb7639de6883acb6a6521d63e99f3686772d73409
parentmedia: pci: make snd_pcm_hardware const (diff)
downloadkernel-qcow2-linux-92a6882eefda0ee34b9dfc029ee2ed2e91fac277.tar.gz
kernel-qcow2-linux-92a6882eefda0ee34b9dfc029ee2ed2e91fac277.tar.xz
kernel-qcow2-linux-92a6882eefda0ee34b9dfc029ee2ed2e91fac277.zip
media: tuners: make snd_pcm_hardware const
Make these const as they are only used during a copy operation. Done using Coccinelle. Signed-off-by: Bhumika Goyal <bhumirks@gmail.com> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
-rw-r--r--drivers/media/tuners/tda18271-maps.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/tuners/tda18271-maps.c b/drivers/media/tuners/tda18271-maps.c
index 7d114677b4ca..9679804fd219 100644
--- a/drivers/media/tuners/tda18271-maps.c
+++ b/drivers/media/tuners/tda18271-maps.c
@@ -1182,7 +1182,7 @@ fail:
/*---------------------------------------------------------------------*/
-static struct tda18271_std_map tda18271c1_std_map = {
+static const struct tda18271_std_map tda18271c1_std_map = {
.fm_radio = { .if_freq = 1250, .fm_rfn = 1, .agc_mode = 3, .std = 0,
.if_lvl = 0, .rfagc_top = 0x2c, }, /* EP3[4:0] 0x18 */
.atv_b = { .if_freq = 6750, .fm_rfn = 0, .agc_mode = 1, .std = 6,
@@ -1215,7 +1215,7 @@ static struct tda18271_std_map tda18271c1_std_map = {
.if_lvl = 1, .rfagc_top = 0x37, }, /* EP3[4:0] 0x1f */
};
-static struct tda18271_std_map tda18271c2_std_map = {
+static const struct tda18271_std_map tda18271c2_std_map = {
.fm_radio = { .if_freq = 1250, .fm_rfn = 1, .agc_mode = 3, .std = 0,
.if_lvl = 0, .rfagc_top = 0x2c, }, /* EP3[4:0] 0x18 */
.atv_b = { .if_freq = 6000, .fm_rfn = 0, .agc_mode = 1, .std = 5,