diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-07-17 23:16:26 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-07-17 23:16:26 -0300 |
commit | 5d7e2f60cbdb5f84c0117590153567ea607618a8 (patch) | |
tree | 65a74abde3cde516134bbe496d47e529a35ae9f7 /linux/drivers/media/common/tuners/tuner-xc2028.c | |
parent | 5c1a1372115a81f18824591abc20d1d8d56da3d9 (diff) | |
download | mediapointer-dvb-s2-5d7e2f60cbdb5f84c0117590153567ea607618a8.tar.gz mediapointer-dvb-s2-5d7e2f60cbdb5f84c0117590153567ea607618a8.tar.bz2 |
backport commit c63e87e90abb5d3ecd05d6c6eba94163bf8c1760
From: Mauro Carvalho Chehab <mchehab@infradead.org>
Author: David Woodhouse <dwmw2@infradead.org>
Date: Sat May 24 00:13:34 2008 +0100
tuners: treat firmware data as const
kernel-sync:
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/common/tuners/tuner-xc2028.c')
-rw-r--r-- | linux/drivers/media/common/tuners/tuner-xc2028.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/common/tuners/tuner-xc2028.c b/linux/drivers/media/common/tuners/tuner-xc2028.c index 88fd2c91c..a3272e81e 100644 --- a/linux/drivers/media/common/tuners/tuner-xc2028.c +++ b/linux/drivers/media/common/tuners/tuner-xc2028.c @@ -259,7 +259,7 @@ static int load_all_firmwares(struct dvb_frontend *fe) { struct xc2028_data *priv = fe->tuner_priv; const struct firmware *fw = NULL; - unsigned char *p, *endp; + const unsigned char *p, *endp; int rc = 0; int n, n_array; char name[33]; |