Staging: cx25821: Change indent with spaces to tabs 9
Change indent with spaces to tabs. Signed-off-by: Leonid V. Fedorenchik <leonidsbox@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
8ebbda49b7
commit
fb5f2c8010
@@ -782,32 +782,31 @@ static void buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static struct videobuf_queue_ops cx25821_video_qops = {
|
static struct videobuf_queue_ops cx25821_video_qops = {
|
||||||
.buf_setup = cx25821_buffer_setup,
|
.buf_setup = cx25821_buffer_setup,
|
||||||
.buf_prepare = cx25821_buffer_prepare,
|
.buf_prepare = cx25821_buffer_prepare,
|
||||||
.buf_queue = buffer_queue,
|
.buf_queue = buffer_queue,
|
||||||
.buf_release = cx25821_buffer_release,
|
.buf_release = cx25821_buffer_release,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int video_open(struct file *file)
|
static int video_open(struct file *file)
|
||||||
{
|
{
|
||||||
struct video_device *vdev = video_devdata(file);
|
struct video_device *vdev = video_devdata(file);
|
||||||
struct cx25821_dev *h, *dev = video_drvdata(file);
|
struct cx25821_dev *h, *dev = video_drvdata(file);
|
||||||
struct cx25821_fh *fh;
|
struct cx25821_fh *fh;
|
||||||
struct list_head *list;
|
struct list_head *list;
|
||||||
int minor = video_devdata(file)->minor;
|
int minor = video_devdata(file)->minor;
|
||||||
enum v4l2_buf_type type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
|
enum v4l2_buf_type type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
|
||||||
u32 pix_format;
|
u32 pix_format;
|
||||||
int ch_id = 0;
|
int ch_id = 0;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
dprintk(1, "open dev=%s type=%s\n",
|
dprintk(1, "open dev=%s type=%s\n", video_device_node_name(vdev),
|
||||||
video_device_node_name(vdev),
|
v4l2_type_names[type]);
|
||||||
v4l2_type_names[type]);
|
|
||||||
|
|
||||||
/* allocate + initialize per filehandle data */
|
/* allocate + initialize per filehandle data */
|
||||||
fh = kzalloc(sizeof(*fh), GFP_KERNEL);
|
fh = kzalloc(sizeof(*fh), GFP_KERNEL);
|
||||||
if (NULL == fh)
|
if (NULL == fh)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
mutex_lock(&cx25821_devlist_mutex);
|
mutex_lock(&cx25821_devlist_mutex);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user