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
ea10cfeb
Commit
ea10cfeb
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] update the u14-34f driver to maintainer updates
(With bios changes merged)
parent
4476a8de
Changes
2
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
101 additions
and
101 deletions
+101
-101
drivers/scsi/u14-34f.c
drivers/scsi/u14-34f.c
+88
-83
drivers/scsi/u14-34f.h
drivers/scsi/u14-34f.h
+13
-18
No files found.
drivers/scsi/u14-34f.c
View file @
ea10cfeb
This diff is collapsed.
Click to expand it.
drivers/scsi/u14-34f.h
View file @
ea10cfeb
/*
/*
* u14-34f.h - used by the low-level driver for UltraStor 14F/34F
* u14-34f.h - used by the low-level driver for UltraStor 14F/34F
*/
*/
#ifndef _U14_34F_H
#define _U14_34F_H
#include <scsi/scsicam.h>
static
int
u14_34f_detect
(
Scsi_Host_Template
*
);
static
int
u14_34f_release
(
struct
Scsi_Host
*
);
static
int
u14_34f_queuecommand
(
Scsi_Cmnd
*
,
void
(
*
done
)(
Scsi_Cmnd
*
));
static
int
u14_34f_eh_abort
(
Scsi_Cmnd
*
);
static
int
u14_34f_eh_host_reset
(
Scsi_Cmnd
*
);
static
int
u14_34f_bios_param
(
Disk
*
,
struct
block_device
*
,
int
*
);
static
int
u14_34f_slave_attach
(
Scsi_Device
*
);
int
u14_34f_detect
(
Scsi_Host_Template
*
);
#define U14_34F_VERSION "8.00.00"
int
u14_34f_release
(
struct
Scsi_Host
*
);
int
u14_34f_queuecommand
(
Scsi_Cmnd
*
,
void
(
*
done
)(
Scsi_Cmnd
*
));
int
u14_34f_abort
(
Scsi_Cmnd
*
);
int
u14_34f_reset
(
Scsi_Cmnd
*
);
int
u14_34f_biosparam
(
struct
scsi_device
*
,
struct
block_device
*
,
sector_t
,
int
*
);
#define U14_34F_VERSION "7.70.00"
#define ULTRASTOR_14_34F { \
#define ULTRASTOR_14_34F { \
name: "UltraStor 14F/34F rev. " U14_34F_VERSION " ", \
name: "UltraStor 14F/34F rev. " U14_34F_VERSION " ", \
...
@@ -23,14 +19,13 @@ int u14_34f_biosparam(struct scsi_device *, struct block_device *,
...
@@ -23,14 +19,13 @@ int u14_34f_biosparam(struct scsi_device *, struct block_device *,
queuecommand: u14_34f_queuecommand, \
queuecommand: u14_34f_queuecommand, \
abort: NULL, \
abort: NULL, \
reset: NULL, \
reset: NULL, \
eh_abort_handler: u14_34f_
abort,
\
eh_abort_handler: u14_34f_
eh_abort,
\
eh_device_reset_handler: NULL, \
eh_device_reset_handler: NULL, \
eh_bus_reset_handler: NULL, \
eh_bus_reset_handler: NULL, \
eh_host_reset_handler: u14_34f_reset, \
eh_host_reset_handler: u14_34f_eh_host_reset, \
bios_param: u14_34f_biosparam, \
bios_param: u14_34f_bios_param, \
slave_attach: u14_34f_slave_attach, \
this_id: 7, \
this_id: 7, \
unchecked_isa_dma: 1, \
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