summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntti Palosaari2013-02-26 18:18:13 +0100
committerMauro Carvalho Chehab2013-03-18 20:54:57 +0100
commit4458a54c5edce2a9bdf826273ceb7f4b3b7278c6 (patch)
tree9a1958c4f51bb34eea9241f25e65accf27f4b401
parent[media] anysee: do not use buffers from stack for usb_bulk_msg() (diff)
downloadkernel-qcow2-linux-4458a54c5edce2a9bdf826273ceb7f4b3b7278c6.tar.gz
kernel-qcow2-linux-4458a54c5edce2a9bdf826273ceb7f4b3b7278c6.tar.xz
kernel-qcow2-linux-4458a54c5edce2a9bdf826273ceb7f4b3b7278c6.zip
[media] anysee: coding style changes
I did what I liked to do. Also corrected two long log writings as checkpatch.pl was complaining about those. Signed-off-by: Antti Palosaari <crope@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r--drivers/media/usb/dvb-usb-v2/anysee.c19
1 files changed, 9 insertions, 10 deletions
diff --git a/drivers/media/usb/dvb-usb-v2/anysee.c b/drivers/media/usb/dvb-usb-v2/anysee.c
index 85ba24650f01..2e762742a4c7 100644
--- a/drivers/media/usb/dvb-usb-v2/anysee.c
+++ b/drivers/media/usb/dvb-usb-v2/anysee.c
@@ -46,8 +46,8 @@
DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
-static int anysee_ctrl_msg(struct dvb_usb_device *d, u8 *sbuf, u8 slen,
- u8 *rbuf, u8 rlen)
+static int anysee_ctrl_msg(struct dvb_usb_device *d,
+ u8 *sbuf, u8 slen, u8 *rbuf, u8 rlen)
{
struct anysee_state *state = d_to_priv(d);
int act_len, ret, i;
@@ -84,16 +84,16 @@ static int anysee_ctrl_msg(struct dvb_usb_device *d, u8 *sbuf, u8 slen,
d->props->generic_bulk_ctrl_endpoint),
state->buf, sizeof(state->buf), &act_len, 2000);
if (ret) {
- dev_dbg(&d->udev->dev, "%s: recv bulk message " \
- "failed=%d\n", __func__, ret);
+ dev_dbg(&d->udev->dev,
+ "%s: recv bulk message failed=%d\n",
+ __func__, ret);
} else {
dev_dbg(&d->udev->dev, "%s: <<< %*ph\n", __func__,
rlen, state->buf);
if (state->buf[63] != 0x4f)
- dev_dbg(&d->udev->dev, "%s: cmd failed\n",
- __func__);
-
+ dev_dbg(&d->udev->dev,
+ "%s: cmd failed\n", __func__);
break;
}
}
@@ -881,9 +881,8 @@ static int anysee_frontend_attach(struct dvb_usb_adapter *adap)
if (!adap->fe[0]) {
/* we have no frontend :-( */
ret = -ENODEV;
- dev_err(&d->udev->dev, "%s: Unsupported Anysee version. " \
- "Please report the " \
- "<linux-media@vger.kernel.org>.\n",
+ dev_err(&d->udev->dev,
+ "%s: Unsupported Anysee version. Please report the <linux-media@vger.kernel.org>.\n",
KBUILD_MODNAME);
}
error: