projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c67ff24
)
compat: fix two return types
author
Hauke Mehrtens
<hauke@hauke-m.de>
Wed, 13 Jan 2010 21:20:17 +0000
(22:20 +0100)
committer
Luis R. Rodriguez
<lrodriguez@atheros.com>
Wed, 13 Jan 2010 22:16:40 +0000
(14:16 -0800)
This fixes a build error introduced in
7d2b68df6301937a8299bca8bef135ae951b569c
:
/include/linux/compat-2.6.25.h:172: error: two or more data types in declaration specifiers
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
include/linux/compat-2.6.25.h
patch
|
blob
|
history
diff --git
a/include/linux/compat-2.6.25.h
b/include/linux/compat-2.6.25.h
index e0dfdf3a7daf8a8c1fd260c0e70f6752231b285e..7188b8c118dcdff9f7f8d864e2c3315556b3768c 100644
(file)
--- a/
include/linux/compat-2.6.25.h
+++ b/
include/linux/compat-2.6.25.h
@@
-169,7
+169,7
@@
static inline int compat_pm_qos_power_init(void)
return 0;
}
-static inline int
int
compat_pm_qos_power_deinit(void)
+static inline int compat_pm_qos_power_deinit(void)
{
return 0;
}