#include <linux/init.h>
#include <linux/fs.h>
#include <linux/vmalloc.h>
#include <linux/sched.h>
#include <linux/slab.h>
#include <linux/mm.h>
#include <linux/string.h>
#include <linux/pagemap.h>
#include <linux/io.h>
#include <asm/page.h>
#include <linux/uaccess.h>
#include <linux/ktime.h>
#include <media/v4l2-ioctl.h>
#include <media/v4l2-ctrls.h>
#include <media/v4l2-fh.h>
#include <media/v4l2-event.h>
#include "gspca.h"
Go to the source code of this file.
|
| | MODULE_AUTHOR ("Jean-François Moine <http://moinejf.free.fr>") |
| |
| | MODULE_DESCRIPTION ("GSPCA USB Camera Driver") |
| |
| | MODULE_LICENSE ("GPL") |
| |
| | MODULE_VERSION (GSPCA_VERSION) |
| |
| void | gspca_frame_add (struct gspca_dev *gspca_dev, enum gspca_packet_type packet_type, const u8 *data, int len) |
| |
| | EXPORT_SYMBOL (gspca_frame_add) |
| |
| int | gspca_dev_probe2 (struct usb_interface *intf, const struct usb_device_id *id, const struct sd_desc *sd_desc, int dev_size, struct module *module) |
| |
| | EXPORT_SYMBOL (gspca_dev_probe2) |
| |
| int | gspca_dev_probe (struct usb_interface *intf, const struct usb_device_id *id, const struct sd_desc *sd_desc, int dev_size, struct module *module) |
| |
| | EXPORT_SYMBOL (gspca_dev_probe) |
| |
| void | gspca_disconnect (struct usb_interface *intf) |
| |
| | EXPORT_SYMBOL (gspca_disconnect) |
| |
| | module_init (gspca_init) |
| |
| | module_exit (gspca_exit) |
| |
| #define DEF_NURBS 3 /* default number of URBs */ |
| #define GSPCA_MEMORY_NO 0 /* V4L2_MEMORY_xxx starts from 1 */ |
| #define GSPCA_MEMORY_READ 7 |
| #define GSPCA_VERSION "2.14.0" |
| #define PDEBUG_MODE |
( |
|
txt, |
|
|
|
pixfmt, |
|
|
|
w, |
|
|
|
h |
|
) |
| |
| #define pr_fmt |
( |
|
fmt | ) |
KBUILD_MODNAME ": " fmt |
| MODULE_AUTHOR |
( |
"Jean-François Moine <http://moinejf.free.fr>" |
| ) |
|
| MODULE_DESCRIPTION |
( |
"GSPCA USB Camera Driver" |
| ) |
|
| module_exit |
( |
gspca_exit |
| ) |
|
| module_init |
( |
gspca_init |
| ) |
|