#include <linux/module.h>
#include <linux/slab.h>
#include <linux/tty.h>
#include <linux/init.h>
#include "dgrp_common.h"
Go to the source code of this file.
|
| MODULE_LICENSE ("GPL") |
|
| MODULE_AUTHOR ("Digi International, http://www.digi.com") |
|
| MODULE_DESCRIPTION ("RealPort driver for Digi's ethernet-based serial connectivity product line") |
|
| MODULE_VERSION (DIGI_VERSION) |
|
| module_param_named (rawreadok, dgrp_rawreadok, int, 0644) |
|
| MODULE_PARM_DESC (rawreadok,"Bypass flip buffers on input") |
|
| module_param_named (register_cudevices, dgrp_register_cudevices, int, 0644) |
|
| MODULE_PARM_DESC (register_cudevices,"Turn on/off registering legacy cu devices") |
|
| module_param_named (register_prdevices, dgrp_register_prdevices, int, 0644) |
|
| MODULE_PARM_DESC (register_prdevices,"Turn on/off registering transparent print devices") |
|
| module_param_named (pollrate, dgrp_poll_tick, int, 0644) |
|
| MODULE_PARM_DESC (pollrate,"Poll interval in ms") |
|
| module_init (dgrp_init_module) |
|
| module_exit (dgrp_cleanup_module) |
|
MODULE_AUTHOR |
( |
"Digi |
International, |
|
|
http://www.digi.com" |
|
|
) |
| |
module_exit |
( |
dgrp_cleanup_module |
| ) |
|
module_init |
( |
dgrp_init_module |
| ) |
|
MODULE_PARM_DESC |
( |
rawreadok |
, |
|
|
"Bypass flip buffers on input" |
|
|
) |
| |
MODULE_PARM_DESC |
( |
register_cudevices |
, |
|
|
"Turn on/off registering legacy cu devices" |
|
|
) |
| |
MODULE_PARM_DESC |
( |
register_prdevices |
, |
|
|
"Turn on/off registering transparent print devices" |
|
|
) |
| |
int dgrp_register_cudevices = 1 |
int dgrp_register_prdevices = 1 |