Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a1ce3928 authored by David Howells's avatar David Howells
Browse files

UAPI: (Scripted) Convert #include "..." to #include <path/...> in kernel system headers



Convert #include "..." to #include <path/...> in kernel system headers.

Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
Acked-by: default avatarArnd Bergmann <arnd@arndb.de>
Acked-by: default avatarThomas Gleixner <tglx@linutronix.de>
Acked-by: default avatarPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Acked-by: default avatarDave Jones <davej@redhat.com>
parent 760285e7
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -19,7 +19,7 @@


#ifndef CONFIG_MMU
#ifndef CONFIG_MMU


#include "page-nommu.h"
#include <asm/page-nommu.h>


#else
#else


+1 −1
Original line number Original line Diff line number Diff line
@@ -16,7 +16,7 @@
#ifndef CONFIG_MMU
#ifndef CONFIG_MMU


#include <asm-generic/4level-fixup.h>
#include <asm-generic/4level-fixup.h>
#include "pgtable-nommu.h"
#include <asm/pgtable-nommu.h>


#else
#else


+1 −1
Original line number Original line Diff line number Diff line
@@ -5,7 +5,7 @@
 */
 */
#include <asm/hwcap.h>
#include <asm/hwcap.h>


#include "vfp.h"
#include <asm/vfp.h>


@ Macros to allow building with old toolkits (with no VFP support)
@ Macros to allow building with old toolkits (with no VFP support)
	.macro	VFPFMRX, rd, sysreg, cond
	.macro	VFPFMRX, rd, sysreg, cond
+1 −1
Original line number Original line Diff line number Diff line
@@ -114,7 +114,7 @@


/*------------------------------------------------------------*/
/*------------------------------------------------------------*/


#include "sv_addr.agh"
#include <arch/sv_addr.agh>


#if __test_sv_addr__
#if __test_sv_addr__
/* IO_MASK( R_BUS_CONFIG , CE ) */
/* IO_MASK( R_BUS_CONFIG , CE ) */
+1 −1
Original line number Original line Diff line number Diff line
#ifndef _ASM_CRIS_SVINTO_H
#ifndef _ASM_CRIS_SVINTO_H
#define _ASM_CRIS_SVINTO_H
#define _ASM_CRIS_SVINTO_H


#include "sv_addr_ag.h"
#include <arch/sv_addr_ag.h>


extern unsigned int genconfig_shadow; /* defined and set in head.S */
extern unsigned int genconfig_shadow; /* defined and set in head.S */


Loading