projects
/
platform
/
upstream
/
kernel-adaptation-pc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
665020c
)
include/linux/ioport.h: add missing macro argument for devm_release_* family
author
Hiroshi DOYU
<Hiroshi.DOYU@nokia.com>
Sat, 13 Sep 2008 09:33:07 +0000
(
02:33
-0700)
committer
Linus Torvalds
<torvalds@linux-foundation.org>
Sat, 13 Sep 2008 21:41:50 +0000
(14:41 -0700)
akpm: these have no callers at this time, but they shall soon, so let's
get them right.
[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: Hiroshi DOYU <Hiroshi.DOYU@nokia.com>
Cc: Tony Lindgren <tony@atomide.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
include/linux/ioport.h
patch
|
blob
|
history
diff --git
a/include/linux/ioport.h
b/include/linux/ioport.h
index
8d3b7a9
..
350033e
100644
(file)
--- a/
include/linux/ioport.h
+++ b/
include/linux/ioport.h
@@
-159,9
+159,9
@@
extern struct resource * __devm_request_region(struct device *dev,
struct resource *parent, resource_size_t start,
resource_size_t n, const char *name);
-#define devm_release_region(
start,
n) \
+#define devm_release_region(
dev, start,
n) \
__devm_release_region(dev, &ioport_resource, (start), (n))
-#define devm_release_mem_region(
start,
n) \
+#define devm_release_mem_region(
dev, start,
n) \
__devm_release_region(dev, &iomem_resource, (start), (n))
extern void __devm_release_region(struct device *dev, struct resource *parent,