#include <linux/module.h>
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/slab.h>
#include <linux/usb.h>
#include <linux/mm.h>
#include <linux/vmalloc.h>
#include <linux/videodev2.h>
#include <media/v4l2-common.h>
#include <media/v4l2-ioctl.h>
#include "stk-webcam.h"
Go to the source code of this file.
|
| module_param (hflip, bool, 0444) |
|
| MODULE_PARM_DESC (hflip,"Horizontal image flip (mirror). Defaults to 0") |
|
| module_param (vflip, bool, 0444) |
|
| MODULE_PARM_DESC (vflip,"Vertical image flip. Defaults to 0") |
|
| module_param (debug, int, 0444) |
|
| MODULE_PARM_DESC (debug,"Debug v4l ioctls. Defaults to 0") |
|
| MODULE_LICENSE ("GPL") |
|
| MODULE_AUTHOR ("Jaime Velasco Juan <[email protected]> and Nicolas VIVIEN") |
|
| MODULE_DESCRIPTION ("Syntek DC1125 webcam driver") |
|
| MODULE_DEVICE_TABLE (usb, stkwebcam_table) |
|
int | stk_camera_write_reg (struct stk_camera *dev, u16 index, u8 value) |
|
int | stk_camera_read_reg (struct stk_camera *dev, u16 index, int *value) |
|
| module_usb_driver (stk_camera_driver) |
|
MODULE_DESCRIPTION |
( |
"Syntek DC1125 webcam driver" |
| ) |
|
MODULE_DEVICE_TABLE |
( |
usb |
, |
|
|
stkwebcam_table |
|
|
) |
| |
module_param |
( |
hflip |
, |
|
|
bool |
, |
|
|
0444 |
|
|
) |
| |
module_param |
( |
vflip |
, |
|
|
bool |
, |
|
|
0444 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
hflip |
, |
|
|
"Horizontal image flip (mirror). Defaults to 0" |
|
|
) |
| |
MODULE_PARM_DESC |
( |
vflip |
, |
|
|
"Vertical image flip. Defaults to 0" |
|
|
) |
| |
MODULE_PARM_DESC |
( |
debug |
, |
|
|
"Debug v4l ioctls. Defaults to 0" |
|
|
) |
| |
module_usb_driver |
( |
stk_camera_driver |
| ) |
|