V4L/DVB (11685): gspca - gspca-m5602: Constify parameters of two functions
authorErik Andrén <erik.andren@gmail.com>
Mon, 2 Feb 2009 06:51:20 +0000 (03:51 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Tue, 16 Jun 2009 21:20:51 +0000 (18:20 -0300)
A number of parameters to some functions in the m5602 are constant and should be flagged as such.

Signed-off-by: Erik Andrén <erik.andren@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/video/gspca/m5602/m5602_bridge.h
drivers/media/video/gspca/m5602/m5602_core.c

index 34515e5..1127a40 100644 (file)
@@ -148,10 +148,10 @@ struct sd {
 };
 
 int m5602_read_bridge(
-       struct sd *sd, u8 address, u8 *i2c_data);
+       struct sd *sd, const u8 address, u8 *i2c_data);
 
 int m5602_write_bridge(
-       struct sd *sd, u8 address, u8 i2c_data);
+       struct sd *sd, const u8 address, const u8 i2c_data);
 
 int m5602_write_sensor(struct sd *sd, const u8 address,
                       u8 *i2c_data, const u8 len);
index 36bdcda..dd10243 100644 (file)
@@ -36,7 +36,7 @@ static const __devinitdata struct usb_device_id m5602_table[] = {
 MODULE_DEVICE_TABLE(usb, m5602_table);
 
 /* Reads a byte from the m5602 */
-int m5602_read_bridge(struct sd *sd, u8 address, u8 *i2c_data)
+int m5602_read_bridge(struct sd *sd, const u8 address, u8 *i2c_data)
 {
        int err;
        struct usb_device *udev = sd->gspca_dev.dev;
@@ -57,7 +57,7 @@ int m5602_read_bridge(struct sd *sd, u8 address, u8 *i2c_data)
 }
 
 /* Writes a byte to to the m5602 */
-int m5602_write_bridge(struct sd *sd, u8 address, u8 i2c_data)
+int m5602_write_bridge(struct sd *sd, const u8 address, const u8 i2c_data)
 {
        int err;
        struct usb_device *udev = sd->gspca_dev.dev;