#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/module.h>
#include <linux/kref.h>
#include <linux/suspend.h>
#include <linux/usb/quirks.h>
#include <linux/ctype.h>
#include <linux/string.h>
#include <linux/types.h>
#include <linux/firmware.h>
#include "vendorcmds.h"
#include "pd-common.h"
Go to the source code of this file.
|
| MODULE_DEVICE_TABLE (usb, id_table) |
|
| module_param (debug_mode, int, 0644) |
|
| MODULE_PARM_DESC (debug_mode,"0 = disable, 1 = enable, 2 = verbose") |
|
s32 | send_set_req (struct poseidon *pd, u8 cmdid, s32 param, s32 *cmd_status) |
|
s32 | send_get_req (struct poseidon *pd, u8 cmdid, s32 param, void *buf, s32 *cmd_status, s32 datalen) |
|
int | set_tuner_mode (struct poseidon *pd, unsigned char mode) |
|
void | poseidon_delete (struct kref *kref) |
|
| module_init (poseidon_init) |
|
| module_exit (poseidon_exit) |
|
| MODULE_AUTHOR ("Telegent Systems") |
|
| MODULE_DESCRIPTION ("For tlg2300-based USB device ") |
|
| MODULE_LICENSE ("GPL") |
|
| MODULE_VERSION ("0.0.2") |
|
| MODULE_FIRMWARE (TLG2300_FIRMWARE) |
|
#define PRODUCT_ID 0x4001 |
#define TLG2300_FIRMWARE "tlg2300_firmware.bin" |
MODULE_AUTHOR |
( |
"Telegent Systems" |
| ) |
|
MODULE_DESCRIPTION |
( |
"For tlg2300-based USB device " |
| ) |
|
MODULE_DEVICE_TABLE |
( |
usb |
, |
|
|
id_table |
|
|
) |
| |
module_exit |
( |
poseidon_exit |
| ) |
|
module_init |
( |
poseidon_init |
| ) |
|
MODULE_VERSION |
( |
"0.0.2" |
| ) |
|