#include <linux/module.h>
#include "ch7006_priv.h"
Go to the source code of this file.
|
| MODULE_DEVICE_TABLE (i2c, ch7006_ids) |
|
| module_param_named (debug, ch7006_debug, int, 0600) |
|
| MODULE_PARM_DESC (debug,"Enable debug output.") |
|
| module_param_named (tv_norm, ch7006_tv_norm, charp, 0600) |
|
| MODULE_PARM_DESC (tv_norm,"Default TV norm.\n""\t\tSupported: PAL, PAL-M, PAL-N, PAL-Nc, PAL-60, NTSC-M, NTSC-J.\n""\t\tDefault: PAL") |
|
| module_param_named (scale, ch7006_scale, int, 0600) |
|
| MODULE_PARM_DESC (scale,"Default scale.\n""\t\tSupported: 0 -> Select video modes with a higher blanking ratio.\n""\t\t\t1 -> Select default video modes.\n""\t\t\t2 -> Select video modes with a lower blanking ratio.") |
|
| MODULE_AUTHOR ("Francisco Jerez <[email protected]>") |
|
| MODULE_DESCRIPTION ("Chrontel ch7006 TV encoder driver") |
|
| MODULE_LICENSE ("GPL and additional rights") |
|
| module_init (ch7006_init) |
|
| module_exit (ch7006_exit) |
|
MODULE_DESCRIPTION |
( |
"Chrontel ch7006 TV encoder driver" |
| ) |
|
MODULE_DEVICE_TABLE |
( |
i2c |
, |
|
|
ch7006_ids |
|
|
) |
| |
module_exit |
( |
ch7006_exit |
| ) |
|
module_init |
( |
ch7006_init |
| ) |
|
MODULE_LICENSE |
( |
"GPL and additional rights" |
| ) |
|
MODULE_PARM_DESC |
( |
debug |
, |
|
|
"Enable debug output." |
|
|
) |
| |
MODULE_PARM_DESC |
( |
tv_norm |
, |
|
|
"Default TV norm.\n""\t\tSupported: |
PAL, |
|
|
PAL- |
M, |
|
|
PAL- |
N, |
|
|
PAL- |
Nc, |
|
|
PAL- |
60, |
|
|
NTSC- |
M, |
|
|
NTSC-J.\n""\t\tDefault:PAL" |
|
|
) |
| |
MODULE_PARM_DESC |
( |
scale |
, |
|
|
"Default scale.\n""\t\tSupported: 0 -> Select video modes with a higher blanking ratio.\n""\t\t\t1 -> Select default video modes.\n""\t\t\t2 -> Select video modes with a lower blanking ratio." |
|
|
) |
| |