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

Commit a37c8875 authored by jdl@freescale.com's avatar jdl@freescale.com Committed by Paul Mackerras
Browse files

[PATCH] powerpc: Standardize on _ASM_POWERPC header symbol prefix



Standardize on _ASM_POWERPC_... prefix for all #include
exclusion symbols.  Fixup all the non-compilers.

Signed-off-by: default avatarJon Loeliger <jdl@freescale.com>
Signed-off-by: default avatarKumar Gala <kumar.gala@freescale.com>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent 38c0ff06
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
#ifndef _ASM_POWERPC_8253PIT_H
#define _ASM_POWERPC_8253PIT_H

/*
 * 8253/8254 Programmable Interval Timer
 */

#ifndef _8253PIT_H
#define _8253PIT_H

#define PIT_TICK_RATE	1193182UL

#endif
#endif	/* _ASM_POWERPC_8253PIT_H */
+3 −5
Original line number Diff line number Diff line
#ifndef AGP_H
#define AGP_H 1
#ifndef _ASM_POWERPC_AGP_H
#define _ASM_POWERPC_AGP_H

#include <asm/io.h>

/* nothing much needed here */

#define map_page_into_agp(page)
#define unmap_page_from_agp(page)
#define flush_agp_mappings()
@@ -20,4 +18,4 @@
#define free_gatt_pages(table, order)	\
	free_pages((unsigned long)(table), (order))

#endif
#endif	/* _ASM_POWERPC_AGP_H */
+3 −3
Original line number Diff line number Diff line
#ifndef _POWERPC_BUGS_H
#define _POWERPC_BUGS_H
#ifndef _ASM_POWERPC_BUGS_H
#define _ASM_POWERPC_BUGS_H

/*
 * This program is free software; you can redistribute it and/or
@@ -15,4 +15,4 @@

extern void check_bugs(void);

#endif /* _POWERPC_BUGS_H */
#endif	/* _ASM_POWERPC_BUGS_H */
+3 −3
Original line number Diff line number Diff line
#ifndef _PPC_ERRNO_H
#define _PPC_ERRNO_H
#ifndef _ASM_POWERPC_ERRNO_H
#define _ASM_POWERPC_ERRNO_H

#include <asm-generic/errno.h>

@@ -8,4 +8,4 @@

#define _LAST_ERRNO	516

#endif
#endif	/* _ASM_POWERPC_ERRNO_H */
+3 −3
Original line number Diff line number Diff line
#ifndef _PPC_IOCTL_H
#define _PPC_IOCTL_H
#ifndef _ASM_POWERPC_IOCTL_H
#define _ASM_POWERPC_IOCTL_H


/*
@@ -66,4 +66,4 @@ extern unsigned int __invalid_size_argument_for_IOC;
#define IOCSIZE_MASK	(_IOC_SIZEMASK << _IOC_SIZESHIFT)
#define IOCSIZE_SHIFT	(_IOC_SIZESHIFT)

#endif
#endif	/* _ASM_POWERPC_IOCTL_H */
Loading