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/malloc.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(print_command);
47 EXPORT_SYMBOL(print_sense);
48 EXPORT_SYMBOL(print_req_sense);
49 EXPORT_SYMBOL(print_msg);
50 EXPORT_SYMBOL(print_status);
51 EXPORT_SYMBOL(scsi_dma_free_sectors);
52 EXPORT_SYMBOL(kernel_scsi_ioctl);
53 EXPORT_SYMBOL(scsi_need_isa_buffer);
54 EXPORT_SYMBOL(scsi_release_command);
55 EXPORT_SYMBOL(print_Scsi_Cmnd);
56 EXPORT_SYMBOL(scsi_block_when_processing_errors);
57 EXPORT_SYMBOL(scsi_mark_host_reset);
58 EXPORT_SYMBOL(scsi_ioctl_send_command);
59 #if defined(CONFIG_SCSI_LOGGING) /* { */
60 EXPORT_SYMBOL(scsi_logging_level);
61 #endif
62
63 EXPORT_SYMBOL(scsi_allocate_request);
64 EXPORT_SYMBOL(scsi_release_request);
65 EXPORT_SYMBOL(scsi_wait_req);
66 EXPORT_SYMBOL(scsi_do_req);
67
68 EXPORT_SYMBOL(scsi_report_bus_reset);
69 EXPORT_SYMBOL(scsi_block_requests);
70 EXPORT_SYMBOL(scsi_unblock_requests);
71
72 EXPORT_SYMBOL(scsi_get_host_dev);
73 EXPORT_SYMBOL(scsi_free_host_dev);
74
75 EXPORT_SYMBOL(scsi_sleep);
76
77 EXPORT_SYMBOL(proc_print_scsidevice);
78 EXPORT_SYMBOL(proc_scsi);
79
80 EXPORT_SYMBOL(scsi_io_completion);
81 EXPORT_SYMBOL(scsi_end_request);
82
83 EXPORT_SYMBOL(scsi_register_blocked_host);
84 EXPORT_SYMBOL(scsi_deregister_blocked_host);
85
86 /*
87 * These are here only while I debug the rest of the scsi stuff.
88 */
89 EXPORT_SYMBOL(scsi_hostlist);
90 EXPORT_SYMBOL(scsi_hosts);
91 EXPORT_SYMBOL(scsi_devicelist);
92 EXPORT_SYMBOL(scsi_device_types);
93
94
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.