Commit 9e5e3097 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

[media] az6007: CodingStyle fixes

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 44744f9b
...@@ -211,9 +211,7 @@ static int az6007_rc_query(struct dvb_usb_device *d) ...@@ -211,9 +211,7 @@ static int az6007_rc_query(struct dvb_usb_device *d)
if ((st->data[3] ^ st->data[4]) == 0xff) if ((st->data[3] ^ st->data[4]) == 0xff)
code = code << 8 | st->data[3]; code = code << 8 | st->data[3];
else else
code = code << 16 | st->data[3] << 8| st->data[4]; code = code << 16 | st->data[3] << 8 | st->data[4];
printk("remote query key: %04x\n", code);
rc_keydown(d->rc_dev, code, st->data[5]); rc_keydown(d->rc_dev, code, st->data[5]);
...@@ -302,11 +300,11 @@ int az6007_power_ctrl(struct dvb_usb_device *d, int onoff) ...@@ -302,11 +300,11 @@ int az6007_power_ctrl(struct dvb_usb_device *d, int onoff)
ret = az6007_write(d, FX2_SCON1, 0, 3, NULL, 0); ret = az6007_write(d, FX2_SCON1, 0, 3, NULL, 0);
if (ret < 0) if (ret < 0)
return ret; return ret;
msleep (150); msleep(150);
ret = az6007_write(d, FX2_SCON1, 1, 3, NULL, 0); ret = az6007_write(d, FX2_SCON1, 1, 3, NULL, 0);
if (ret < 0) if (ret < 0)
return ret; return ret;
msleep (430); msleep(430);
ret = az6007_write(d, AZ6007_POWER, 0, 0, NULL, 0); ret = az6007_write(d, AZ6007_POWER, 0, 0, NULL, 0);
if (ret < 0) if (ret < 0)
return ret; return ret;
...@@ -362,8 +360,8 @@ static int az6007_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], ...@@ -362,8 +360,8 @@ static int az6007_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[],
value = addr | (1 << 8); value = addr | (1 << 8);
length = 6 + msgs[i + 1].len; length = 6 + msgs[i + 1].len;
len = msgs[i + 1].len; len = msgs[i + 1].len;
ret = __az6007_read(d->udev, req, value, index, st->data, ret = __az6007_read(d->udev, req, value, index,
length); st->data, length);
if (ret >= len) { if (ret >= len) {
for (j = 0; j < len; j++) { for (j = 0; j < len; j++) {
msgs[i + 1].buf[j] = st->data[j + 5]; msgs[i + 1].buf[j] = st->data[j + 5];
...@@ -391,10 +389,11 @@ static int az6007_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], ...@@ -391,10 +389,11 @@ static int az6007_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[],
for (j = 0; j < len; j++) { for (j = 0; j < len; j++) {
st->data[j] = msgs[i].buf[j + 1]; st->data[j] = msgs[i].buf[j + 1];
if (dvb_usb_az6007_debug & 2) if (dvb_usb_az6007_debug & 2)
printk(KERN_CONT "0x%02x ", st->data[j]); printk(KERN_CONT "0x%02x ",
st->data[j]);
} }
ret = __az6007_write(d->udev, req, value, index, st->data, ret = __az6007_write(d->udev, req, value, index,
length); st->data, length);
} else { } else {
/* read bytes */ /* read bytes */
if (dvb_usb_az6007_debug & 2) if (dvb_usb_az6007_debug & 2)
...@@ -406,8 +405,8 @@ static int az6007_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], ...@@ -406,8 +405,8 @@ static int az6007_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[],
value = addr; value = addr;
length = msgs[i].len + 6; length = msgs[i].len + 6;
len = msgs[i].len; len = msgs[i].len;
ret = __az6007_read(d->udev, req, value, index, st->data, ret = __az6007_read(d->udev, req, value, index,
length); st->data, length);
for (j = 0; j < len; j++) { for (j = 0; j < len; j++) {
msgs[i].buf[j] = st->data[j + 5]; msgs[i].buf[j] = st->data[j + 5];
if (dvb_usb_az6007_debug & 2) if (dvb_usb_az6007_debug & 2)
...@@ -466,7 +465,7 @@ int az6007_identify_state(struct usb_device *udev, ...@@ -466,7 +465,7 @@ int az6007_identify_state(struct usb_device *udev,
__az6007_write(udev, 0x00, 0, 0, NULL, 0); __az6007_write(udev, 0x00, 0, 0, NULL, 0);
} }
deb_info("Device is on %s state\n", *cold? "warm" : "cold"); deb_info("Device is on %s state\n", *cold ? "warm" : "cold");
return 0; return 0;
} }
...@@ -514,7 +513,7 @@ static struct dvb_usb_device_properties az6007_properties = { ...@@ -514,7 +513,7 @@ static struct dvb_usb_device_properties az6007_properties = {
} }
} }
}, },
}} } }
} }, } },
.power_ctrl = az6007_power_ctrl, .power_ctrl = az6007_power_ctrl,
.read_mac_address = az6007_read_mac_addr, .read_mac_address = az6007_read_mac_addr,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment