#include <linux/module.h>
#include <linux/pci.h>
#include <linux/sched.h>
#include <linux/init.h>
#include <linux/gfp.h>
#include <linux/videodev2.h>
#include <media/v4l2-common.h>
#include <media/v4l2-device.h>
#include <media/v4l2-ioctl.h>
#include <asm/uaccess.h>
#include <asm/io.h>
#include <linux/delay.h>
#include <linux/interrupt.h>
#include <linux/vmalloc.h>
#include <linux/dma-mapping.h>
#include "meye.h"
#include <linux/meye.h>
Go to the source code of this file.
|
| MODULE_AUTHOR ("Stelian Pop <[email protected]>") |
|
| MODULE_DESCRIPTION ("v4l2 driver for the MotionEye camera") |
|
| MODULE_LICENSE ("GPL") |
|
| MODULE_VERSION (MEYE_DRIVER_VERSION) |
|
| module_param (gbuffers, int, 0444) |
|
| MODULE_PARM_DESC (gbuffers,"number of capture buffers, default is 2 (32 max)") |
|
| module_param (gbufsize, int, 0444) |
|
| MODULE_PARM_DESC (gbufsize,"size of the capture buffers, default is 614400"" (will be rounded up to a page multiple)") |
|
| module_param (video_nr, int, 0444) |
|
| MODULE_PARM_DESC (video_nr,"video device to register (0=/dev/video0, etc)") |
|
| MODULE_DEVICE_TABLE (pci, meye_pci_tbl) |
|
| module_init (meye_init) |
|
| module_exit (meye_exit) |
|
MODULE_DESCRIPTION |
( |
"v4l2 driver for the MotionEye camera" |
| ) |
|
MODULE_DEVICE_TABLE |
( |
pci |
, |
|
|
meye_pci_tbl |
|
|
) |
| |
module_exit |
( |
meye_exit |
| ) |
|
module_init |
( |
meye_init |
| ) |
|
module_param |
( |
gbuffers |
, |
|
|
int |
, |
|
|
0444 |
|
|
) |
| |
module_param |
( |
gbufsize |
, |
|
|
int |
, |
|
|
0444 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
gbuffers |
, |
|
|
"number of capture |
buffers, |
|
|
default is 2(32 max)" |
|
|
) |
| |
MODULE_PARM_DESC |
( |
gbufsize |
, |
|
|
"size of the capture |
buffers, |
|
|
default is 614400""(will be rounded up to a page multiple)" |
|
|
) |
| |