diff options
Diffstat (limited to 'drivers/media/dvb')
-rw-r--r-- | drivers/media/dvb/frontends/cx22702.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/media/dvb/frontends/cx22702.c b/drivers/media/dvb/frontends/cx22702.c index a5dcf876f81a..f9a7aaee1900 100644 --- a/drivers/media/dvb/frontends/cx22702.c +++ b/drivers/media/dvb/frontends/cx22702.c | |||
@@ -54,7 +54,7 @@ MODULE_PARM_DESC(debug, "Enable verbose debug messages"); | |||
54 | #define dprintk if (debug) printk | 54 | #define dprintk if (debug) printk |
55 | 55 | ||
56 | /* Register values to initialise the demod */ | 56 | /* Register values to initialise the demod */ |
57 | static u8 init_tab[] = { | 57 | static const u8 init_tab[] = { |
58 | 0x00, 0x00, /* Stop aquisition */ | 58 | 0x00, 0x00, /* Stop aquisition */ |
59 | 0x0B, 0x06, | 59 | 0x0B, 0x06, |
60 | 0x09, 0x01, | 60 | 0x09, 0x01, |
@@ -576,7 +576,7 @@ static void cx22702_release(struct dvb_frontend *fe) | |||
576 | kfree(state); | 576 | kfree(state); |
577 | } | 577 | } |
578 | 578 | ||
579 | static struct dvb_frontend_ops cx22702_ops; | 579 | static const struct dvb_frontend_ops cx22702_ops; |
580 | 580 | ||
581 | struct dvb_frontend *cx22702_attach(const struct cx22702_config *config, | 581 | struct dvb_frontend *cx22702_attach(const struct cx22702_config *config, |
582 | struct i2c_adapter *i2c) | 582 | struct i2c_adapter *i2c) |
@@ -608,7 +608,7 @@ error: | |||
608 | } | 608 | } |
609 | EXPORT_SYMBOL(cx22702_attach); | 609 | EXPORT_SYMBOL(cx22702_attach); |
610 | 610 | ||
611 | static struct dvb_frontend_ops cx22702_ops = { | 611 | static const struct dvb_frontend_ops cx22702_ops = { |
612 | 612 | ||
613 | .info = { | 613 | .info = { |
614 | .name = "Conexant CX22702 DVB-T", | 614 | .name = "Conexant CX22702 DVB-T", |