From: Alexey Dobriyan Date: Fri, 7 Nov 2008 07:06:44 +0000 (-0800) Subject: net: mark flow_cache_cpu_prepare() as __init X-Git-Tag: v2.6.29-rc1~581^2~751 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=76acfdb9b78acf73023307974f6d38a269e9967a;p=karo-tx-linux.git net: mark flow_cache_cpu_prepare() as __init It's called from __init code only. And__devinit in generic networking code is pretty strange :^) Signed-off-by: Alexey Dobriyan Signed-off-by: David S. Miller --- diff --git a/net/core/flow.c b/net/core/flow.c index 5cf81052d044..d323388dd1ba 100644 --- a/net/core/flow.c +++ b/net/core/flow.c @@ -307,7 +307,7 @@ void flow_cache_flush(void) put_online_cpus(); } -static void __devinit flow_cache_cpu_prepare(int cpu) +static void __init flow_cache_cpu_prepare(int cpu) { struct tasklet_struct *tasklet; unsigned long order;