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
nexedi
linux
Commits
a7bf8426
Commit
a7bf8426
authored
Nov 04, 2002
by
Alan Cox
Committed by
Dave Jones
Nov 04, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] u14f/34f build fix
parent
872663e0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
7 deletions
+5
-7
drivers/scsi/u14-34f.c
drivers/scsi/u14-34f.c
+4
-4
drivers/scsi/u14-34f.h
drivers/scsi/u14-34f.h
+1
-3
No files found.
drivers/scsi/u14-34f.c
View file @
a7bf8426
...
...
@@ -1486,16 +1486,16 @@ static int u14_34f_eh_host_reset(Scsi_Cmnd *SCarg) {
return
SUCCESS
;
}
static
int
u14_34f_bios_param
(
Disk
*
disk
,
struct
block_device
*
bdev
,
int
*
dkinfo
)
{
static
int
u14_34f_bios_param
(
struct
scsi_device
*
disk
,
struct
block_device
*
bdev
,
sector_t
capacity
,
int
*
dkinfo
)
{
unsigned
int
j
=
0
;
int
size
=
disk
->
capacity
;
unsigned
int
size
=
capacity
;
dkinfo
[
0
]
=
HD
(
j
)
->
heads
;
dkinfo
[
1
]
=
HD
(
j
)
->
sectors
;
dkinfo
[
2
]
=
size
/
(
HD
(
j
)
->
heads
*
HD
(
j
)
->
sectors
);
if
(
ext_tran
&&
(
scsicam_bios_param
(
disk
,
bdev
,
dkinfo
)
<
0
))
{
if
(
ext_tran
&&
(
scsicam_bios_param
(
bdev
,
capacity
,
dkinfo
)
<
0
))
{
dkinfo
[
0
]
=
255
;
dkinfo
[
1
]
=
63
;
dkinfo
[
2
]
=
size
/
(
dkinfo
[
0
]
*
dkinfo
[
1
]);
...
...
drivers/scsi/u14-34f.h
View file @
a7bf8426
...
...
@@ -7,7 +7,7 @@ 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_bios_param
(
struct
scsi_device
*
,
struct
block_device
*
,
sector_t
,
int
*
);
static
int
u14_34f_slave_attach
(
Scsi_Device
*
);
#define U14_34F_VERSION "8.00.00"
...
...
@@ -17,8 +17,6 @@ static int u14_34f_slave_attach(Scsi_Device *);
detect: u14_34f_detect, \
release: u14_34f_release, \
queuecommand: u14_34f_queuecommand, \
abort: NULL, \
reset: NULL, \
eh_abort_handler: u14_34f_eh_abort, \
eh_device_reset_handler: NULL, \
eh_bus_reset_handler: NULL, \
...
...
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