net: qlge: remove superfluous statement
[linux-2.6/btrfs-unstable.git] / include / media / videobuf2-memops.h
blob36565c7acb542b961fcbe38d8b978a6f802f234c
1 /*
2 * videobuf2-memops.h - generic memory handling routines for videobuf2
4 * Copyright (C) 2010 Samsung Electronics
6 * Author: Pawel Osciak <pawel@osciak.com>
7 * Marek Szyprowski <m.szyprowski@samsung.com>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation.
14 #ifndef _MEDIA_VIDEOBUF2_MEMOPS_H
15 #define _MEDIA_VIDEOBUF2_MEMOPS_H
17 #include <media/videobuf2-v4l2.h>
18 #include <linux/mm.h>
20 /**
21 * struct vb2_vmarea_handler - common vma refcount tracking handler
23 * @refcount: pointer to refcount entry in the buffer
24 * @put: callback to function that decreases buffer refcount
25 * @arg: argument for @put callback
27 struct vb2_vmarea_handler {
28 atomic_t *refcount;
29 void (*put)(void *arg);
30 void *arg;
33 extern const struct vm_operations_struct vb2_common_vm_ops;
35 struct frame_vector *vb2_create_framevec(unsigned long start,
36 unsigned long length,
37 bool write);
38 void vb2_destroy_framevec(struct frame_vector *vec);
40 #endif