commit | 1fa7b3a7806107f11ed81f9ac0385e9c2d527392 | [log] [tgz] |
---|---|---|
author | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | Fri Feb 01 11:08:10 2013 -0500 |
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | Wed Feb 13 21:53:44 2013 -0500 |
tree | 1ce221a9ce24200b3cdc50a1f5f2eb034b085cf8 | |
parent | 147306f2161611f43c3efed2400dc4a8ecb195ad [diff] |
zcache/zbud: Fix __init mismatch We get: WARNING: drivers/staging/zcache/zcache.o(.text+0x13a1): Section mismatch in reference from the function zcache_init() to the function .init.text:zbud_init() The function zcache_init() references the function __init zbud_init(). This is often because zcache_init lacks a __init annotation or the annotation of zbud_init is wrong. And this fixes it. Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>