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
d4aa631a
Commit
d4aa631a
authored
Mar 20, 2003
by
Geert Uytterhoeven
Committed by
Linus Torvalds
Mar 20, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] Amiga NCR53c7xx SCSI: use z_ioremap()
Amiga NCR53c7xx SCSI: Use z_ioremap() to map Zorro space
parent
25de682c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
drivers/scsi/amiga7xx.c
drivers/scsi/amiga7xx.c
+2
-2
No files found.
drivers/scsi/amiga7xx.c
View file @
d4aa631a
...
...
@@ -86,7 +86,7 @@ int __init amiga7xx_detect(Scsi_Host_Template *tpnt)
#ifdef CONFIG_WARPENGINE_SCSI
case
ZORRO_PROD_MACROSYSTEMS_WARP_ENGINE_40xx
:
if
(
request_mem_region
(
address
+
0x40000
,
0x1000
,
"ncr53c710"
))
{
address
=
(
unsigned
long
)
ioremap
(
address
,
size
);
address
=
(
unsigned
long
)
z_
ioremap
(
address
,
size
);
options
=
OPTION_MEMORY_MAPPED
|
OPTION_DEBUG_TEST1
|
OPTION_INTFLY
|
OPTION_SYNCHRONOUS
|
OPTION_ALWAYS_SYNCHRONOUS
|
OPTION_DISCONNECT
;
...
...
@@ -102,7 +102,7 @@ int __init amiga7xx_detect(Scsi_Host_Template *tpnt)
case
ZORRO_PROD_CBM_A4091_1
:
case
ZORRO_PROD_CBM_A4091_2
:
if
(
request_mem_region
(
address
+
0x800000
,
0x1000
,
"ncr53c710"
))
{
address
=
(
unsigned
long
)
ioremap
(
address
,
size
);
address
=
(
unsigned
long
)
z_
ioremap
(
address
,
size
);
options
=
OPTION_MEMORY_MAPPED
|
OPTION_DEBUG_TEST1
|
OPTION_INTFLY
|
OPTION_SYNCHRONOUS
|
OPTION_ALWAYS_SYNCHRONOUS
|
OPTION_DISCONNECT
;
...
...
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