ARM: s3c64xx: Annotate external clock frequencies __ro_after_init
The xtal_f and xusbxti_f static variables are modified only through __init accessors (like s3c64xx_set_xtal_freq()). Later these variables are used only in read-only way so we can mark them __ro_after_init to increase code safeness. Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org> Reviewed-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
This commit is contained in:
parent
f3c7bfd738
commit
552146b0c2
|
@ -56,7 +56,8 @@
|
|||
#include "watchdog-reset.h"
|
||||
|
||||
/* External clock frequency */
|
||||
static unsigned long xtal_f = 12000000, xusbxti_f = 48000000;
|
||||
static unsigned long xtal_f __ro_after_init = 12000000;
|
||||
static unsigned long xusbxti_f __ro_after_init = 48000000;
|
||||
|
||||
void __init s3c64xx_set_xtal_freq(unsigned long freq)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue