Commit 146af9cb authored by Amber Thrall's avatar Amber Thrall Committed by Mauro Carvalho Chehab

[media] Media: USB: usbtv: Fixed all coding style issues in usbtv source files

Fixed various coding styles, ignoring coding style error on line 5 for all files containing a link that is longer than 80 characters long.
Signed-off-by: default avatarAmber Thrall <amber.rose.thrall@gmail.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent e87cb470
...@@ -311,6 +311,7 @@ static int snd_usbtv_card_trigger(struct snd_pcm_substream *substream, int cmd) ...@@ -311,6 +311,7 @@ static int snd_usbtv_card_trigger(struct snd_pcm_substream *substream, int cmd)
static snd_pcm_uframes_t snd_usbtv_pointer(struct snd_pcm_substream *substream) static snd_pcm_uframes_t snd_usbtv_pointer(struct snd_pcm_substream *substream)
{ {
struct usbtv *chip = snd_pcm_substream_chip(substream); struct usbtv *chip = snd_pcm_substream_chip(substream);
return chip->snd_buffer_pos; return chip->snd_buffer_pos;
} }
......
...@@ -108,6 +108,7 @@ static int usbtv_probe(struct usb_interface *intf, ...@@ -108,6 +108,7 @@ static int usbtv_probe(struct usb_interface *intf,
static void usbtv_disconnect(struct usb_interface *intf) static void usbtv_disconnect(struct usb_interface *intf)
{ {
struct usbtv *usbtv = usb_get_intfdata(intf); struct usbtv *usbtv = usb_get_intfdata(intf);
usb_set_intfdata(intf, NULL); usb_set_intfdata(intf, NULL);
if (!usbtv) if (!usbtv)
......
...@@ -263,6 +263,7 @@ static void usbtv_chunk_to_vbuf(u32 *frame, __be32 *src, int chunk_no, int odd) ...@@ -263,6 +263,7 @@ static void usbtv_chunk_to_vbuf(u32 *frame, __be32 *src, int chunk_no, int odd)
int part_index = (line * 2 + !odd) * 3 + (part_no % 3); int part_index = (line * 2 + !odd) * 3 + (part_no % 3);
u32 *dst = &frame[part_index * USBTV_CHUNK/2]; u32 *dst = &frame[part_index * USBTV_CHUNK/2];
memcpy(dst, src, USBTV_CHUNK/2 * sizeof(*src)); memcpy(dst, src, USBTV_CHUNK/2 * sizeof(*src));
src += USBTV_CHUNK/2; src += USBTV_CHUNK/2;
} }
...@@ -407,6 +408,7 @@ static void usbtv_stop(struct usbtv *usbtv) ...@@ -407,6 +408,7 @@ static void usbtv_stop(struct usbtv *usbtv)
/* Cancel running transfers. */ /* Cancel running transfers. */
for (i = 0; i < USBTV_ISOC_TRANSFERS; i++) { for (i = 0; i < USBTV_ISOC_TRANSFERS; i++) {
struct urb *ip = usbtv->isoc_urbs[i]; struct urb *ip = usbtv->isoc_urbs[i];
if (ip == NULL) if (ip == NULL)
continue; continue;
usb_kill_urb(ip); usb_kill_urb(ip);
...@@ -560,6 +562,7 @@ static int usbtv_g_input(struct file *file, void *priv, unsigned int *i) ...@@ -560,6 +562,7 @@ static int usbtv_g_input(struct file *file, void *priv, unsigned int *i)
static int usbtv_s_input(struct file *file, void *priv, unsigned int i) static int usbtv_s_input(struct file *file, void *priv, unsigned int i)
{ {
struct usbtv *usbtv = video_drvdata(file); struct usbtv *usbtv = video_drvdata(file);
return usbtv_select_input(usbtv, i); return usbtv_select_input(usbtv, i);
} }
......
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