V4L/DVB (6148): Fix a warning at saa7191_probe
authorMauro Carvalho Chehab <mchehab@infradead.org>
Mon, 3 Sep 2007 15:01:51 +0000 (12:01 -0300)
committerMauro Carvalho Chehab <mchehab@infradead.org>
Fri, 14 Sep 2007 16:13:42 +0000 (13:13 -0300)
saa7191.c: In function 'saa7191_probe':
saa7191.c:596: warning: passing argument 3 of
'saa7191_write_block' discards qualifiers from pointer target type

Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
drivers/media/video/saa7191.c

index 8615a6081a5d2eeae75143c4b6b1a93444807854..b4018cce328536c4a2a1f06b7bb11bcc48f6e94e 100644 (file)
@@ -130,7 +130,7 @@ static int saa7191_write_reg(struct i2c_client *client, u8 reg,
 
 /* the first byte of data must be the first subaddress number (register) */
 static int saa7191_write_block(struct i2c_client *client,
-                              u8 length, u8 *data)
+                              u8 length, const u8 *data)
 {
        int i;
        int ret;
@@ -592,7 +592,7 @@ static int saa7191_attach(struct i2c_adapter *adap, int addr, int kind)
        if (err)
                goto out_free_decoder;
 
-       err = saa7191_write_block(client, sizeof(initseq), (u8 *)initseq);
+       err = saa7191_write_block(client, sizeof(initseq), initseq);
        if (err) {
                printk(KERN_ERR "SAA7191 initialization failed\n");
                goto out_detach_client;