Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
f0026aae
Commit
f0026aae
authored
Oct 31, 2002
by
Alan Cox
Committed by
Linus Torvalds
Oct 31, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] eata update from maintainer
parent
4caa8dd5
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
114 additions
and
212 deletions
+114
-212
drivers/scsi/eata.c
drivers/scsi/eata.c
+99
-195
drivers/scsi/eata.h
drivers/scsi/eata.h
+15
-17
No files found.
drivers/scsi/eata.c
View file @
f0026aae
This diff is collapsed.
Click to expand it.
drivers/scsi/eata.h
View file @
f0026aae
/*
* eata.h - used by the low-level driver for EATA/DMA SCSI host adapters.
*/
#ifndef _EATA_H
#define _EATA_H
#include <scsi/scsicam.h>
int
eata2x_detect
(
Scsi_Host_Template
*
);
int
eata2x_release
(
struct
Scsi_Host
*
);
int
eata2x_queuecommand
(
Scsi_Cmnd
*
,
void
(
*
done
)(
Scsi_Cmnd
*
));
int
eata2x_abort
(
Scsi_Cmnd
*
);
int
eata2x_reset
(
Scsi_Cmnd
*
);
int
eata2x_biosparam
(
struct
scsi_device
*
,
struct
block_device
*
,
static
int
eata2x_detect
(
Scsi_Host_Template
*
);
static
int
eata2x_release
(
struct
Scsi_Host
*
);
static
int
eata2x_queuecommand
(
Scsi_Cmnd
*
,
void
(
*
done
)(
Scsi_Cmnd
*
));
static
int
eata2x_eh_abort
(
Scsi_Cmnd
*
);
static
int
eata2x_eh_host_reset
(
Scsi_Cmnd
*
);
static
int
eata2x_biosparam
(
struct
scsi_device
*
,
struct
block_device
*
,
sector_t
,
int
*
);
static
int
eata2x_slave_attach
(
Scsi_Device
*
);
#define EATA_VERSION "
7.7
0.00"
#define EATA_VERSION "
8.0
0.00"
#define EATA { \
name: "EATA/DMA 2.0x rev. " EATA_VERSION " ", \
detect: eata2x_detect, \
release: eata2x_release, \
queuecommand: eata2x_queuecommand, \
eh_abort_handler: eata2x_abort, \
eh_host_reset_handler: eata2x_reset, \
bios_param: eata2x_biosparam, \
abort: NULL, \
reset: NULL, \
eh_abort_handler: eata2x_eh_abort, \
eh_device_reset_handler: NULL, \
eh_bus_reset_handler: NULL, \
eh_host_reset_handler: eata2x_eh_host_reset, \
bios_param: eata2x_bios_param, \
slave_attach: eata2x_slave_attach, \
this_id: 7, \
unchecked_isa_dma: 1, \
use_clustering: ENABLE_CLUSTERING
,
\
use_clustering: ENABLE_CLUSTERING
\
}
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment