Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

xtensa: remove unused platform_init_irq()

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Signed-off-by: Chris Zankel <chris@zankel.net>

authored by

Baruch Siach and committed by
Chris Zankel
214fe80f 28622c53

-6
-5
arch/xtensa/include/asm/platform.h
··· 30 30 extern void platform_setup (char **); 31 31 32 32 /* 33 - * platform_init_irq is called from init_IRQ. 34 - */ 35 - extern void platform_init_irq (void); 36 - 37 - /* 38 33 * platform_restart is called to restart the system. 39 34 */ 40 35 extern void platform_restart (void);
-1
arch/xtensa/kernel/platform.c
··· 29 29 */ 30 30 31 31 _F(void, setup, (char** cmd), { }); 32 - _F(void, init_irq, (void), { }); 33 32 _F(void, restart, (void), { while(1); }); 34 33 _F(void, halt, (void), { while(1); }); 35 34 _F(void, power_off, (void), { while(1); });