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
b890a32b
Commit
b890a32b
authored
Sep 21, 2002
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
IDE: Try to use PCI dma_mask only if the device actually _is_ PCI.
From Andries.
parent
dd2ad358
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
drivers/ide/ide-lib.c
drivers/ide/ide-lib.c
+1
-1
No files found.
drivers/ide/ide-lib.c
View file @
b890a32b
...
@@ -394,7 +394,7 @@ void ide_toggle_bounce(ide_drive_t *drive, int on)
...
@@ -394,7 +394,7 @@ void ide_toggle_bounce(ide_drive_t *drive, int on)
if
(
on
&&
drive
->
media
==
ide_disk
)
{
if
(
on
&&
drive
->
media
==
ide_disk
)
{
if
(
!
PCI_DMA_BUS_IS_PHYS
)
if
(
!
PCI_DMA_BUS_IS_PHYS
)
addr
=
BLK_BOUNCE_ANY
;
addr
=
BLK_BOUNCE_ANY
;
else
else
if
(
HWIF
(
drive
)
->
pci_dev
)
addr
=
HWIF
(
drive
)
->
pci_dev
->
dma_mask
;
addr
=
HWIF
(
drive
)
->
pci_dev
->
dma_mask
;
}
}
...
...
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