update atp870u driver to 0.78 from D-Link source
[linux-2.4.git] / drivers / scsi / scsi_syms.c
1 /*
2  * We should not even be trying to compile this if we are not doing
3  * a module.
4  */
5 #define __NO_VERSION__
6 #include <linux/config.h>
7 #include <linux/module.h>
8
9 #include <linux/sched.h>
10 #include <linux/timer.h>
11 #include <linux/string.h>
12 #include <linux/slab.h>
13 #include <linux/ioport.h>
14 #include <linux/kernel.h>
15 #include <linux/blk.h>
16 #include <linux/fs.h>
17
18 #include <asm/system.h>
19 #include <asm/irq.h>
20 #include <asm/dma.h>
21
22 #include "scsi.h"
23 #include <scsi/scsi_ioctl.h>
24 #include "hosts.h"
25 #include "constants.h"
26
27 #include "sd.h"
28 #include <scsi/scsicam.h>
29
30 /*
31  * This source file contains the symbol table used by scsi loadable
32  * modules.
33  */
34 EXPORT_SYMBOL(scsi_register_module);
35 EXPORT_SYMBOL(scsi_unregister_module);
36 EXPORT_SYMBOL(scsi_free);
37 EXPORT_SYMBOL(scsi_malloc);
38 EXPORT_SYMBOL(scsi_register);
39 EXPORT_SYMBOL(scsi_unregister);
40 EXPORT_SYMBOL(scsicam_bios_param);
41 EXPORT_SYMBOL(scsi_partsize);
42 EXPORT_SYMBOL(scsi_allocate_device);
43 EXPORT_SYMBOL(scsi_do_cmd);
44 EXPORT_SYMBOL(scsi_command_size);
45 EXPORT_SYMBOL(scsi_ioctl);
46 EXPORT_SYMBOL(scsi_finish_command);
47 EXPORT_SYMBOL(print_command);
48 EXPORT_SYMBOL(print_sense);
49 EXPORT_SYMBOL(print_req_sense);
50 EXPORT_SYMBOL(print_msg);
51 EXPORT_SYMBOL(print_status);
52 EXPORT_SYMBOL(scsi_dma_free_sectors);
53 EXPORT_SYMBOL(kernel_scsi_ioctl);
54 EXPORT_SYMBOL(scsi_need_isa_buffer);
55 EXPORT_SYMBOL(scsi_release_command);
56 EXPORT_SYMBOL(print_Scsi_Cmnd);
57 EXPORT_SYMBOL(scsi_block_when_processing_errors);
58 EXPORT_SYMBOL(scsi_mark_host_reset);
59 EXPORT_SYMBOL(scsi_ioctl_send_command);
60 #if defined(CONFIG_SCSI_LOGGING)        /* { */
61 EXPORT_SYMBOL(scsi_logging_level);
62 #endif
63
64 EXPORT_SYMBOL(scsi_allocate_request);
65 EXPORT_SYMBOL(scsi_release_request);
66 EXPORT_SYMBOL(scsi_wait_req);
67 EXPORT_SYMBOL(scsi_do_req);
68
69 EXPORT_SYMBOL(scsi_report_bus_reset);
70 EXPORT_SYMBOL(scsi_block_requests);
71 EXPORT_SYMBOL(scsi_unblock_requests);
72
73 EXPORT_SYMBOL(scsi_get_host_dev);
74 EXPORT_SYMBOL(scsi_free_host_dev);
75
76 EXPORT_SYMBOL(scsi_sleep);
77
78 EXPORT_SYMBOL(proc_print_scsidevice);
79 EXPORT_SYMBOL(proc_scsi);
80
81 EXPORT_SYMBOL(scsi_io_completion);
82 EXPORT_SYMBOL(scsi_end_request);
83
84 EXPORT_SYMBOL(scsi_register_blocked_host);
85 EXPORT_SYMBOL(scsi_deregister_blocked_host);
86
87 /*
88  * This symbol is for the highlevel drivers (e.g. sg) only.
89  */
90 EXPORT_SYMBOL(scsi_reset_provider);
91
92 /*
93  * These are here only while I debug the rest of the scsi stuff.
94  */
95 EXPORT_SYMBOL(scsi_hostlist);
96 EXPORT_SYMBOL(scsi_hosts);
97 EXPORT_SYMBOL(scsi_devicelist);
98 EXPORT_SYMBOL(scsi_device_types);
99
100 /*
101  * Externalize timers so that HBAs can safely start/restart commands.
102  */
103 extern void scsi_add_timer(Scsi_Cmnd *, int, void ((*) (Scsi_Cmnd *)));
104 extern int scsi_delete_timer(Scsi_Cmnd *);
105 EXPORT_SYMBOL(scsi_add_timer);
106 EXPORT_SYMBOL(scsi_delete_timer);