File tree Expand file tree Collapse file tree 4 files changed +0
-9
lines changed Expand file tree Collapse file tree 4 files changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -93,11 +93,6 @@ static inline void * phys_to_virt(unsigned long address)
93
93
94
94
#define page_to_phys (page ) page_to_pa(page)
95
95
96
- static inline dma_addr_t __deprecated isa_page_to_bus (struct page * page )
97
- {
98
- return page_to_phys (page );
99
- }
100
-
101
96
/* Maximum PIO space address supported? */
102
97
#define IO_SPACE_LIMIT 0xffff
103
98
Original file line number Diff line number Diff line change 30
30
* ISA I/O bus memory addresses are 1:1 with the physical address.
31
31
*/
32
32
#define isa_virt_to_bus virt_to_phys
33
- #define isa_page_to_bus page_to_phys
34
33
#define isa_bus_to_virt phys_to_virt
35
34
36
35
/*
Original file line number Diff line number Diff line change @@ -149,8 +149,6 @@ static inline void *isa_bus_to_virt(unsigned long address)
149
149
return phys_to_virt (address );
150
150
}
151
151
152
- #define isa_page_to_bus page_to_phys
153
-
154
152
/*
155
153
* However PCI ones are not necessarily 1:1 and therefore these interfaces
156
154
* are forbidden in portable PCI drivers.
Original file line number Diff line number Diff line change @@ -165,7 +165,6 @@ static inline unsigned int isa_virt_to_bus(volatile void *address)
165
165
{
166
166
return (unsigned int )virt_to_phys (address );
167
167
}
168
- #define isa_page_to_bus (page ) ((unsigned int )page_to_phys (page ))
169
168
#define isa_bus_to_virt phys_to_virt
170
169
171
170
/*
You can’t perform that action at this time.
0 commit comments