diff options
author | Arnd Bergmann <arnd@arndb.de> | 2015-11-17 00:26:43 +0300 |
---|---|---|
committer | Krzysztof Kozlowski <k.kozlowski@samsung.com> | 2015-11-27 04:10:32 +0300 |
commit | 62f49ee26f14753bd7fa634f51d537a79061bf0f (patch) | |
tree | 9b9f242cafe39bbd1e9b9d219c3a3f2cbb406301 /drivers/cpufreq/highbank-cpufreq.c | |
parent | ce36f6ad862fc3bc2466c89de17694e582a778b5 (diff) | |
download | linux-62f49ee26f14753bd7fa634f51d537a79061bf0f.tar.xz |
cpufreq: s3c24xx: Do not mark s3c2410_plls_add as __init
s3c2410_plls_add is a device notifier that may be called at runtime and
is correctly not marked __init. However it calls s3c_plltab_register()
which is marked __init, and that triggers a build error when we are
checking for section mismatches:
WARNING: vmlinux.o(.text+0x195e0): Section mismatch in reference from the function s3c2410_plls_add() to the function .init.text:s3c_plltab_register()
The function s3c2410_plls_add() references
the function __init s3c_plltab_register().
This is often because s3c2410_plls_add lacks a __init
annotation or the annotation of s3c_plltab_register is wrong.
This removes the __init annotation from s3c2410_plls_add as well as the
__initdata section annotations from s3c2440_plls_12 and s3c2440_plls_169344,
which in turn are referenced from s3c2410_plls_add.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Diffstat (limited to 'drivers/cpufreq/highbank-cpufreq.c')
0 files changed, 0 insertions, 0 deletions