projects
/
comedi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
77c7c05
)
made dummy release_mem_region() macro consistent with a function that returns void.
author
Frank Mori Hess
<fmhess@speakeasy.net>
Mon, 10 Sep 2001 20:45:20 +0000
(20:45 +0000)
committer
Frank Mori Hess
<fmhess@speakeasy.net>
Mon, 10 Sep 2001 20:45:20 +0000
(20:45 +0000)
Reduces the number of compiler warnings slightly.
include/linux/ioport.h
patch
|
blob
|
history
diff --git
a/include/linux/ioport.h
b/include/linux/ioport.h
index d5e7eebfbe159ffb3ed9f5a432d3c1f9558b7551..85ae3c169f936739458901e74f2d0247b0a790f9 100644
(file)
--- a/
include/linux/ioport.h
+++ b/
include/linux/ioport.h
@@
-8,8
+8,8
@@
#if KERNEL_VERSION_CODE < KERNEL_VERSION(2,3,17)
#define check_mem_region(start,n) 0
-#define request_mem_region(start,n
i
,name) 0
-#define release_mem_region(start,n)
0
+#define request_mem_region(start,n,name) 0
+#define release_mem_region(start,n)
#endif