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
6641c654
Commit
6641c654
authored
Sep 21, 2004
by
David S. Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ATM]: Use __iomem where appropriate.
Signed-off-by:
David S. Miller
<
davem@davemloft.net
>
parent
f4f9e3fd
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
7 deletions
+7
-7
drivers/atm/firestream.h
drivers/atm/firestream.h
+1
-1
drivers/atm/he.h
drivers/atm/he.h
+1
-1
drivers/atm/idt77252.h
drivers/atm/idt77252.h
+2
-2
drivers/atm/lanai.c
drivers/atm/lanai.c
+1
-1
drivers/atm/nicstar.h
drivers/atm/nicstar.h
+1
-1
drivers/atm/nicstarmac.h
drivers/atm/nicstarmac.h
+1
-1
No files found.
drivers/atm/firestream.h
View file @
6641c654
...
...
@@ -477,7 +477,7 @@ struct fs_dev {
struct
timer_list
timer
;
unsigned
long
hw_base
;
/* mem base address */
void
*
base
;
/* Mapping of base address */
void
__iomem
*
base
;
/* Mapping of base address */
int
channo
;
unsigned
long
channel_mask
;
...
...
drivers/atm/he.h
View file @
6641c654
...
...
@@ -265,7 +265,7 @@ struct he_cs_stper
struct
he_dev
{
unsigned
int
number
;
unsigned
int
irq
;
void
*
membase
;
void
__iomem
*
membase
;
char
prod_id
[
30
];
char
mac_addr
[
6
];
...
...
drivers/atm/idt77252.h
View file @
6641c654
...
...
@@ -355,9 +355,9 @@ struct idt77252_dev
struct
pci_dev
*
pcidev
;
/* PCI handle (desriptor) */
struct
atm_dev
*
atmdev
;
/* ATM device desriptor */
void
*
membase
;
/* SAR's memory base address */
void
__iomem
*
membase
;
/* SAR's memory base address */
unsigned
long
srambase
;
/* SAR's sram base address */
void
*
fbq
[
4
];
/* FBQ fill addresses */
void
__iomem
*
fbq
[
4
];
/* FBQ fill addresses */
struct
semaphore
mutex
;
spinlock_t
cmd_lock
;
/* for r/w utility/sram */
...
...
drivers/atm/lanai.c
View file @
6641c654
...
...
@@ -191,7 +191,7 @@
#define LANAI_EEPROM_SIZE (128)
typedef
int
vci_t
;
typedef
void
*
bus_addr_t
;
typedef
void
__iomem
*
bus_addr_t
;
/* DMA buffer in host memory for TX, RX, or service list. */
struct
lanai_buffer
{
...
...
drivers/atm/nicstar.h
View file @
6641c654
...
...
@@ -763,7 +763,7 @@ typedef struct ns_dev
{
int
index
;
/* Card ID to the device driver */
int
sram_size
;
/* In k x 32bit words. 32 or 128 */
void
*
membase
;
/* Card's memory base address */
void
__iomem
*
membase
;
/* Card's memory base address */
unsigned
long
max_pcr
;
int
rct_size
;
/* Number of entries */
int
vpibits
;
...
...
drivers/atm/nicstarmac.h
View file @
6641c654
...
...
@@ -7,7 +7,7 @@
******************************************************************************/
typedef
void
*
virt_addr_t
;
typedef
void
__iomem
*
virt_addr_t
;
u_int32_t
nicstar_read_eprom_status
(
virt_addr_t
base
);
void
nicstar_init_eprom
(
virt_addr_t
base
);
...
...
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