rtc: asm9260: remove incorrect __init/__exit annotations
authorArnd Bergmann <arnd@arndb.de>
Tue, 15 Mar 2016 21:44:31 +0000 (22:44 +0100)
committerAlexandre Belloni <alexandre.belloni@free-electrons.com>
Fri, 18 Mar 2016 23:02:55 +0000 (00:02 +0100)
commit15c6ea6f81328b0071cf63fb00b324199a9b8647
treefc70ece10b50788f2e8903f982cdbb928fca1c25
parentbcebd81d00a062af5a4cf900b08c8ca22a26d52f
rtc: asm9260: remove incorrect __init/__exit annotations

The probe and remove callbacks of the platform driver are marked __init
and __exit, respectively. However, this is not a correct way to annotate
them, as it will result in those sections to be discarded at link time
or after boot, while we can actually call them again based on manual
unbinding, or deferred probing.

Kbuild warns about the problem:

WARNING: drivers/rtc/rtc-asm9260.o(.data+0x0): Section mismatch in reference from the variable asm9260_rtc_driver to the function .init.text:asm9260_rtc_probe()

This removes the annotations, so we no longer branch into missing
code and avoid the warning.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Fixes: 125e550fd257 ("rtc: add Alphascale asm9260 driver")
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
drivers/rtc/rtc-asm9260.c
This page took 0.026528 seconds and 5 git commands to generate.