diff options
author | Arnd Bergmann <arnd@arndb.de> | 2014-12-02 14:54:57 +0300 |
---|---|---|
committer | Nicolas Ferre <nicolas.ferre@atmel.com> | 2014-12-02 18:59:06 +0300 |
commit | 865a381223cff0d6d976d9bbe1d57a9288ba147b (patch) | |
tree | d92e438785fd5bc63f6c180f585dd21e4f4a75da /arch/arm/mach-at91/soc.h | |
parent | e093d7cf37ec9ff24b0631b0a2e405a7cf7574db (diff) | |
download | linux-865a381223cff0d6d976d9bbe1d57a9288ba147b.tar.xz |
ARM: at91: cleanup initilisation code by removing dead code
The AT91-specific SoC strucutre "struct at91_init_soc" was filled with specific
!DT initilisation functions. Now that we got rid of the !DT board file
description, remove unneeded functions.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
[nicolas.ferre@atmel.com: split patch]
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Diffstat (limited to 'arch/arm/mach-at91/soc.h')
-rw-r--r-- | arch/arm/mach-at91/soc.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/arch/arm/mach-at91/soc.h b/arch/arm/mach-at91/soc.h index 9a8fd97a8bef..ae6c0b2f1146 100644 --- a/arch/arm/mach-at91/soc.h +++ b/arch/arm/mach-at91/soc.h @@ -6,14 +6,8 @@ struct at91_init_soc { int builtin; - u32 extern_irq; - unsigned int *default_irq_priority; void (*map_io)(void); - void (*ioremap_registers)(void); - void (*register_clocks)(void); - void (*register_devices)(void); void (*init)(void); - void (*init_time)(void); }; extern struct at91_init_soc at91_boot_soc; |