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
c4403aef
Commit
c4403aef
authored
Mar 12, 2004
by
Tom Rini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PPC32: consistent_free only takes one arguement.
parent
746ac5d9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
include/asm-ppc/dma-mapping.h
include/asm-ppc/dma-mapping.h
+1
-1
include/asm-ppc/io.h
include/asm-ppc/io.h
+1
-1
No files found.
include/asm-ppc/dma-mapping.h
View file @
c4403aef
...
...
@@ -49,7 +49,7 @@ dma_free_coherent(struct device *dev, size_t size, void *vaddr,
}
#endif
consistent_free
(
vaddr
,
size
);
consistent_free
(
vaddr
);
}
static
inline
dma_addr_t
...
...
include/asm-ppc/io.h
View file @
c4403aef
...
...
@@ -421,7 +421,7 @@ extern void consistent_sync_page(struct page *page, unsigned long offset,
#define dma_cache_wback_inv(_start,_size) do { } while (0)
#define consistent_alloc(gfp, size, handle) NULL
#define consistent_free(addr
, size)
do { } while (0)
#define consistent_free(addr
)
do { } while (0)
#define consistent_sync(addr, size, rw) do { } while (0)
#define consistent_sync_page(pg, off, sz, rw) do { } while (0)
...
...
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