diff options
author | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2013-01-16 00:26:41 +0100 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2013-01-16 00:48:03 +0100 |
commit | 9382bd65d4ebee690fe7ee6602d418144ed92d54 (patch) | |
tree | d9c0ae468024b6fcc922338368aa79b1e4238899 /src/arch/armv7/include/common.h | |
parent | 09e16dc21597d20f215c822d63f8409271baacca (diff) |
armv7: delete unneeded ptrace.h
... and delete traces in source files.
Change-Id: Ie0f70a479f1eadadc654a41fa3c426d1d4ac2f2b
Signed-off-by: Stefan Reinauer <reinauer@google.com>
Reviewed-on: http://review.coreboot.org/2152
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/arch/armv7/include/common.h')
-rw-r--r-- | src/arch/armv7/include/common.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/arch/armv7/include/common.h b/src/arch/armv7/include/common.h index 2d4d020f37..a2cd9ae44b 100644 --- a/src/arch/armv7/include/common.h +++ b/src/arch/armv7/include/common.h @@ -24,9 +24,6 @@ #ifndef __COMMON_H_ #define __COMMON_H_ 1 -#undef _LINUX_CONFIG_H -#define _LINUX_CONFIG_H 1 /* avoid reading Linux autoconf.h file */ - #ifndef __ASSEMBLER__ /* put C only stuff in this section */ typedef unsigned char uchar; @@ -36,17 +33,7 @@ typedef volatile unsigned char vu_char; typedef unsigned long ulong; typedef unsigned int uint; -//#include <config.h> -//#include <asm-offsets.h> -//#include <linux/bitops.h> -//#include <linux/string.h> -//#include <asm/ptrace.h> #include <types.h> -//#include <stdarg.h> - -//#include <part.h> -//#include <flash.h> -//#include <image.h> #ifdef DEBUG #define debug(fmt,args...) printf (fmt ,##args) |