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
nexedi
linux
Commits
a9b6590c
Commit
a9b6590c
authored
Mar 01, 2007
by
Ralf Baechle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[MIPS] DMA: Fix a bunch of warnings due to missing inline keywords.
Signed-off-by:
Ralf Baechle
<
ralf@linux-mips.org
>
parent
07c0d743
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
include/asm-mips/mach-generic/dma-coherence.h
include/asm-mips/mach-generic/dma-coherence.h
+6
-4
No files found.
include/asm-mips/mach-generic/dma-coherence.h
View file @
a9b6590c
...
...
@@ -11,22 +11,24 @@
struct
device
;
static
dma_addr_t
plat_map_dma_mem
(
struct
device
*
dev
,
void
*
addr
,
size_t
size
)
static
inline
dma_addr_t
plat_map_dma_mem
(
struct
device
*
dev
,
void
*
addr
,
size_t
size
)
{
return
virt_to_phys
(
addr
);
}
static
dma_addr_t
plat_map_dma_mem_page
(
struct
device
*
dev
,
struct
page
*
page
)
static
inline
dma_addr_t
plat_map_dma_mem_page
(
struct
device
*
dev
,
struct
page
*
page
)
{
return
page_to_phys
(
page
);
}
static
unsigned
long
plat_dma_addr_to_phys
(
dma_addr_t
dma_addr
)
static
inline
unsigned
long
plat_dma_addr_to_phys
(
dma_addr_t
dma_addr
)
{
return
dma_addr
;
}
static
void
plat_unmap_dma_mem
(
dma_addr_t
dma_addr
)
static
inline
void
plat_unmap_dma_mem
(
dma_addr_t
dma_addr
)
{
}
...
...
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