mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-04-03 16:32:28 +00:00
[media] cx25821-video.c: Change line endings
Change obscure line endings to less obscure ones. (improve readability) Signed-off-by: Leonid V. Fedorenchik <leonidsbox@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
f253981406
commit
0abfefbe49
@ -140,8 +140,8 @@ void cx25821_video_wakeup(struct cx25821_dev *dev, struct cx25821_dmaqueue *q,
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
buf =
|
buf = list_entry(q->active.next, struct cx25821_buffer,
|
||||||
list_entry(q->active.next, struct cx25821_buffer, vb.queue);
|
vb.queue);
|
||||||
|
|
||||||
/* count comes from the hw and it is 16bit wide --
|
/* count comes from the hw and it is 16bit wide --
|
||||||
* this trick handles wrap-arounds correctly for
|
* this trick handles wrap-arounds correctly for
|
||||||
@ -318,8 +318,8 @@ int cx25821_restart_video_queue(struct cx25821_dev *dev,
|
|||||||
struct list_head *item;
|
struct list_head *item;
|
||||||
|
|
||||||
if (!list_empty(&q->active)) {
|
if (!list_empty(&q->active)) {
|
||||||
buf =
|
buf = list_entry(q->active.next, struct cx25821_buffer,
|
||||||
list_entry(q->active.next, struct cx25821_buffer, vb.queue);
|
vb.queue);
|
||||||
|
|
||||||
cx25821_start_video_dma(dev, q, buf, channel);
|
cx25821_start_video_dma(dev, q, buf, channel);
|
||||||
|
|
||||||
@ -337,8 +337,8 @@ int cx25821_restart_video_queue(struct cx25821_dev *dev,
|
|||||||
if (list_empty(&q->queued))
|
if (list_empty(&q->queued))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
buf =
|
buf = list_entry(q->queued.next, struct cx25821_buffer,
|
||||||
list_entry(q->queued.next, struct cx25821_buffer, vb.queue);
|
vb.queue);
|
||||||
|
|
||||||
if (NULL == prev) {
|
if (NULL == prev) {
|
||||||
list_move_tail(&buf->vb.queue, &q->active);
|
list_move_tail(&buf->vb.queue, &q->active);
|
||||||
@ -375,8 +375,8 @@ void cx25821_vid_timeout(unsigned long data)
|
|||||||
|
|
||||||
spin_lock_irqsave(&dev->slock, flags);
|
spin_lock_irqsave(&dev->slock, flags);
|
||||||
while (!list_empty(&q->active)) {
|
while (!list_empty(&q->active)) {
|
||||||
buf =
|
buf = list_entry(q->active.next, struct cx25821_buffer,
|
||||||
list_entry(q->active.next, struct cx25821_buffer, vb.queue);
|
vb.queue);
|
||||||
list_del(&buf->vb.queue);
|
list_del(&buf->vb.queue);
|
||||||
|
|
||||||
buf->vb.state = VIDEOBUF_ERROR;
|
buf->vb.state = VIDEOBUF_ERROR;
|
||||||
@ -498,15 +498,14 @@ int cx25821_video_register(struct cx25821_dev *dev)
|
|||||||
dev->channels[i].timeout_data.dev = dev;
|
dev->channels[i].timeout_data.dev = dev;
|
||||||
dev->channels[i].timeout_data.channel =
|
dev->channels[i].timeout_data.channel =
|
||||||
&cx25821_sram_channels[i];
|
&cx25821_sram_channels[i];
|
||||||
dev->channels[i].vidq.timeout.function =
|
dev->channels[i].vidq.timeout.function = cx25821_vid_timeout;
|
||||||
cx25821_vid_timeout;
|
|
||||||
dev->channels[i].vidq.timeout.data =
|
dev->channels[i].vidq.timeout.data =
|
||||||
(unsigned long)&dev->channels[i].timeout_data;
|
(unsigned long)&dev->channels[i].timeout_data;
|
||||||
init_timer(&dev->channels[i].vidq.timeout);
|
init_timer(&dev->channels[i].vidq.timeout);
|
||||||
|
|
||||||
/* register v4l devices */
|
/* register v4l devices */
|
||||||
dev->channels[i].video_dev = cx25821_vdev_init(dev,
|
dev->channels[i].video_dev = cx25821_vdev_init(dev, dev->pci,
|
||||||
dev->pci, &cx25821_video_device, "video");
|
&cx25821_video_device, "video");
|
||||||
|
|
||||||
err = video_register_device(dev->channels[i].video_dev,
|
err = video_register_device(dev->channels[i].video_dev,
|
||||||
VFL_TYPE_GRABBER, video_nr[dev->nr]);
|
VFL_TYPE_GRABBER, video_nr[dev->nr]);
|
||||||
@ -619,10 +618,9 @@ int cx25821_buffer_prepare(struct videobuf_queue *q, struct videobuf_buffer *vb,
|
|||||||
dev->tvnorm & V4L2_STD_PAL_DK)
|
dev->tvnorm & V4L2_STD_PAL_DK)
|
||||||
bpl_local = 352 << 1;
|
bpl_local = 352 << 1;
|
||||||
else
|
else
|
||||||
bpl_local =
|
bpl_local = dev->channels[
|
||||||
dev->channels[channel_opened].
|
channel_opened].
|
||||||
cif_width <<
|
cif_width << 1;
|
||||||
1;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -846,11 +844,10 @@ static int video_open(struct file *file)
|
|||||||
|
|
||||||
v4l2_prio_open(&dev->channels[ch_id].prio, &fh->prio);
|
v4l2_prio_open(&dev->channels[ch_id].prio, &fh->prio);
|
||||||
|
|
||||||
videobuf_queue_sg_init(&fh->vidq, &cx25821_video_qops,
|
videobuf_queue_sg_init(&fh->vidq, &cx25821_video_qops, &dev->pci->dev,
|
||||||
&dev->pci->dev, &dev->slock,
|
&dev->slock, V4L2_BUF_TYPE_VIDEO_CAPTURE,
|
||||||
V4L2_BUF_TYPE_VIDEO_CAPTURE,
|
V4L2_FIELD_INTERLACED, sizeof(struct cx25821_buffer),
|
||||||
V4L2_FIELD_INTERLACED,
|
fh, NULL);
|
||||||
sizeof(struct cx25821_buffer), fh, NULL);
|
|
||||||
|
|
||||||
dprintk(1, "post videobuf_queue_init()\n");
|
dprintk(1, "post videobuf_queue_init()\n");
|
||||||
mutex_unlock(&cx25821_devlist_mutex);
|
mutex_unlock(&cx25821_devlist_mutex);
|
||||||
@ -1166,8 +1163,8 @@ int cx25821_vidioc_querycap(struct file *file, void *priv,
|
|||||||
strlcpy(cap->card, cx25821_boards[dev->board].name, sizeof(cap->card));
|
strlcpy(cap->card, cx25821_boards[dev->board].name, sizeof(cap->card));
|
||||||
sprintf(cap->bus_info, "PCIe:%s", pci_name(dev->pci));
|
sprintf(cap->bus_info, "PCIe:%s", pci_name(dev->pci));
|
||||||
cap->version = CX25821_VERSION_CODE;
|
cap->version = CX25821_VERSION_CODE;
|
||||||
cap->capabilities =
|
cap->capabilities = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_READWRITE |
|
||||||
V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_READWRITE | V4L2_CAP_STREAMING;
|
V4L2_CAP_STREAMING;
|
||||||
if (UNSET != dev->tuner_type)
|
if (UNSET != dev->tuner_type)
|
||||||
cap->capabilities |= V4L2_CAP_TUNER;
|
cap->capabilities |= V4L2_CAP_TUNER;
|
||||||
return 0;
|
return 0;
|
||||||
@ -1897,8 +1894,8 @@ static long video_ioctl_set(struct file *file, unsigned int cmd,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (selected_channel <= 7 && selected_channel >= 0) {
|
if (selected_channel <= 7 && selected_channel >= 0) {
|
||||||
dev->channels[selected_channel].
|
dev->channels[selected_channel].use_cif_resolution =
|
||||||
use_cif_resolution = cif_enable;
|
cif_enable;
|
||||||
dev->channels[selected_channel].cif_width = width;
|
dev->channels[selected_channel].cif_width = width;
|
||||||
} else {
|
} else {
|
||||||
for (i = 0; i < VID_CHANNEL_NUM; i++) {
|
for (i = 0; i < VID_CHANNEL_NUM; i++) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user