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

Configure Feed

Select the types of activity you want to include in your feed.

FRV: Remove unused header asm/init.h.

It seems nothing has included the frv asm/init.h header for some time, and its
actual contents are out of date with include/linux/init.h. So just delete it.

Signed-off-by: Tim Abbott <tabbott@mit.edu>
Signed-off-by: David Howells <dhowells@redhat.com>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Tim Abbott and committed by
Linus Torvalds
b2ad5e1e 3d4f1634

-12
-12
arch/frv/include/asm/init.h
··· 1 - #ifndef _ASM_INIT_H 2 - #define _ASM_INIT_H 3 - 4 - #define __init __attribute__ ((__section__ (".text.init"))) 5 - #define __initdata __attribute__ ((__section__ (".data.init"))) 6 - /* For assembly routines */ 7 - #define __INIT .section ".text.init",#alloc,#execinstr 8 - #define __FINIT .previous 9 - #define __INITDATA .section ".data.init",#alloc,#write 10 - 11 - #endif 12 -