summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/kernel
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2016-11-17 17:20:24 +0100
committerMichael Ellerman <mpe@ellerman.id.au>2016-11-18 22:40:38 +1100
commit60d862e531f310a32e272528ad4e041970543d02 (patch)
treee764c7113854f258212f1386a380bd5edfb3e050 /arch/powerpc/kernel
parentc05f69a3dc702312bbecae4c7ddfc999f48ee720 (diff)
downloadlinux-60d862e531f310a32e272528ad4e041970543d02.tar.gz
linux-60d862e531f310a32e272528ad4e041970543d02.tar.bz2
linux-60d862e531f310a32e272528ad4e041970543d02.zip
powerpc: Fix old style declaration GCC warnings
Fix two [-Wold-style-declaration] GCC warnings by moving the inline keyword before the return type. Signed-off-by: Tobias Klauser <tklauser@distanz.ch> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/kernel')
-rw-r--r--arch/powerpc/kernel/prom_init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/kernel/prom_init.c b/arch/powerpc/kernel/prom_init.c
index 88ac964f4858..05d2556ebb9f 100644
--- a/arch/powerpc/kernel/prom_init.c
+++ b/arch/powerpc/kernel/prom_init.c
@@ -461,14 +461,14 @@ static int __init prom_next_node(phandle *nodep)
}
}
-static int inline prom_getprop(phandle node, const char *pname,
+static inline int prom_getprop(phandle node, const char *pname,
void *value, size_t valuelen)
{
return call_prom("getprop", 4, 1, node, ADDR(pname),
(u32)(unsigned long) value, (u32) valuelen);
}
-static int inline prom_getproplen(phandle node, const char *pname)
+static inline int prom_getproplen(phandle node, const char *pname)
{
return call_prom("getproplen", 2, 1, node, ADDR(pname));
}