#include <linux/module.h>
#include <linux/err.h>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/list.h>
#include <linux/slab.h>
#include <linux/types.h>
#include <linux/wait.h>
#include <asm/ccwdev.h>
#include <asm/cio.h>
#include <asm/ebcdic.h>
#include <asm/diag.h>
#include "raw3270.h"
#include <linux/major.h>
#include <linux/kdev_t.h>
#include <linux/device.h>
#include <linux/mutex.h>
Go to the source code of this file.
|
| module_param (tubxcorrect, bool, 0) |
|
| DECLARE_WAIT_QUEUE_HEAD (raw3270_wait_queue) |
|
void | raw3270_buffer_address (struct raw3270 *rp, char *cp, unsigned short addr) |
|
struct raw3270_request * | raw3270_request_alloc (size_t size) |
|
void | raw3270_request_free (struct raw3270_request *rq) |
|
void | raw3270_request_reset (struct raw3270_request *rq) |
|
void | raw3270_request_set_cmd (struct raw3270_request *rq, u8 cmd) |
|
int | raw3270_request_add_data (struct raw3270_request *rq, void *data, size_t size) |
|
void | raw3270_request_set_data (struct raw3270_request *rq, void *data, size_t size) |
|
void | raw3270_request_set_idal (struct raw3270_request *rq, struct idal_buffer *ib) |
|
int | raw3270_start (struct raw3270_view *view, struct raw3270_request *rq) |
|
int | raw3270_start_locked (struct raw3270_view *view, struct raw3270_request *rq) |
|
int | raw3270_start_irq (struct raw3270_view *view, struct raw3270_request *rq) |
|
struct raw3270_ua | __attribute__ ((packed)) |
|
int | raw3270_reset (struct raw3270_view *view) |
|
int | raw3270_activate_view (struct raw3270_view *view) |
|
void | raw3270_deactivate_view (struct raw3270_view *view) |
|
int | raw3270_add_view (struct raw3270_view *view, struct raw3270_fn *fn, int minor) |
|
struct raw3270_view * | raw3270_find_view (struct raw3270_fn *fn, int minor) |
|
void | raw3270_del_view (struct raw3270_view *view) |
|
int | raw3270_register_notifier (void(*notifier)(int, int)) |
|
void | raw3270_unregister_notifier (void(*notifier)(int, int)) |
|
void | raw3270_pm_unfreeze (struct raw3270_view *view) |
|
| MODULE_LICENSE ("GPL") |
|
| module_init (raw3270_init) |
|
| module_exit (raw3270_exit) |
|
| EXPORT_SYMBOL (raw3270_request_alloc) |
|
| EXPORT_SYMBOL (raw3270_request_free) |
|
| EXPORT_SYMBOL (raw3270_request_reset) |
|
| EXPORT_SYMBOL (raw3270_request_set_cmd) |
|
| EXPORT_SYMBOL (raw3270_request_add_data) |
|
| EXPORT_SYMBOL (raw3270_request_set_data) |
|
| EXPORT_SYMBOL (raw3270_request_set_idal) |
|
| EXPORT_SYMBOL (raw3270_buffer_address) |
|
| EXPORT_SYMBOL (raw3270_add_view) |
|
| EXPORT_SYMBOL (raw3270_del_view) |
|
| EXPORT_SYMBOL (raw3270_find_view) |
|
| EXPORT_SYMBOL (raw3270_activate_view) |
|
| EXPORT_SYMBOL (raw3270_deactivate_view) |
|
| EXPORT_SYMBOL (raw3270_start) |
|
| EXPORT_SYMBOL (raw3270_start_locked) |
|
| EXPORT_SYMBOL (raw3270_start_irq) |
|
| EXPORT_SYMBOL (raw3270_reset) |
|
| EXPORT_SYMBOL (raw3270_register_notifier) |
|
| EXPORT_SYMBOL (raw3270_unregister_notifier) |
|
| EXPORT_SYMBOL (raw3270_wait_queue) |
|
#define RAW3270_FLAGS_14BITADDR 0 /* 14-bit buffer addresses */ |
#define RAW3270_FLAGS_CONSOLE 8 /* Device is the console. */ |
#define RAW3270_FLAGS_READY 4 /* Device is useable by views */ |
mcontroller : adapter info structure for old mimd_t apps
: base address : irq number : number of logical drives : pci bus : pci device : pci function : pci id : vendor id : slot number : unique id
Definition at line 171 of file esd_usb2.c.
module_exit |
( |
raw3270_exit |
| ) |
|
module_init |
( |
raw3270_init |
| ) |
|
module_param |
( |
tubxcorrect |
, |
|
|
bool |
, |
|
|
0 |
|
|
) |
| |