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
092f4993
Commit
092f4993
authored
Apr 07, 2003
by
Alan Cox
Committed by
Linus Torvalds
Apr 07, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] fix our handling of BIOS forced PIO serverworks OSB4
(Robert Hentosh & me)
parent
fab80306
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
drivers/ide/pci/serverworks.c
drivers/ide/pci/serverworks.c
+7
-1
No files found.
drivers/ide/pci/serverworks.c
View file @
092f4993
...
...
@@ -419,7 +419,13 @@ static void config_chipset_for_pio (ide_drive_t *drive)
static
void
svwks_tune_drive
(
ide_drive_t
*
drive
,
u8
pio
)
{
(
void
)
svwks_tune_chipset
(
drive
,
(
XFER_PIO_0
+
pio
));
/* Tune to desired value or to "best". We must not adjust
"best" when we adjust from pio numbers to rate values! */
if
(
pio
!=
255
)
(
void
)
svwks_tune_chipset
(
drive
,
(
XFER_PIO_0
+
pio
));
else
(
void
)
svwks_tune_chipset
(
drive
,
255
);
}
static
int
config_chipset_for_dma
(
ide_drive_t
*
drive
)
...
...
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