mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-10 15:10:38 +00:00
ARM: 8495/1: ATAGS: move save_atags() to arch/arm/include/asm/setup.h
So it can be used by code outside arch/arm/kernel/. Fix save_atags() declaration to match its definition while at it. Signed-off-by: Ivaylo Dimitrov <ivo.g.dimitrov.75@gmail.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
parent
5008efc83b
commit
6e0306a97d
@ -25,4 +25,10 @@ extern int arm_add_memory(u64 start, u64 size);
|
|||||||
extern void early_print(const char *str, ...);
|
extern void early_print(const char *str, ...);
|
||||||
extern void dump_machine_table(void);
|
extern void dump_machine_table(void);
|
||||||
|
|
||||||
|
#ifdef CONFIG_ATAGS_PROC
|
||||||
|
extern void save_atags(const struct tag *tags);
|
||||||
|
#else
|
||||||
|
static inline void save_atags(const struct tag *tags) { }
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -1,9 +1,3 @@
|
|||||||
#ifdef CONFIG_ATAGS_PROC
|
|
||||||
extern void save_atags(struct tag *tags);
|
|
||||||
#else
|
|
||||||
static inline void save_atags(struct tag *tags) { }
|
|
||||||
#endif
|
|
||||||
|
|
||||||
void convert_to_tag_list(struct tag *tags);
|
void convert_to_tag_list(struct tag *tags);
|
||||||
|
|
||||||
#ifdef CONFIG_ATAGS
|
#ifdef CONFIG_ATAGS
|
||||||
|
Loading…
x
Reference in New Issue
Block a user