summaryrefslogtreecommitdiff
path: root/firmware/arch/x86_64/include/biosincludes.h
diff options
context:
space:
mode:
authorGabe Black <gabeblack@chromium.org>2013-03-16 01:10:30 -0700
committerChromeBot <chrome-bot@google.com>2013-03-19 10:31:18 -0700
commit77f55ca1cd282ac6c540ea3a8bacbc35c2600d60 (patch)
treefe5a9950810e484603b95ecbf7dff6fe743e037d /firmware/arch/x86_64/include/biosincludes.h
parente064ab4e90be4b9660fbc66c09b290783114825f (diff)
downloadvboot-stabilize-3881.0.B.tar.gz
Get rid of the now unused biosincludes.h headers.stabilize-3881.0.B
These are no longer necessary. BUG=None TEST=Built for Daisy, Link, Lumpy. BRANCH=None Change-Id: I8db7dde1ba52bd5cf1881481ef6a502a5b509439 Signed-off-by: Gabe Black <gabeblack@google.com> Reviewed-on: https://gerrit.chromium.org/gerrit/45686 Reviewed-by: Randall Spangler <rspangler@chromium.org> Reviewed-by: Bill Richardson <wfrichar@chromium.org> Tested-by: Gabe Black <gabeblack@chromium.org> Commit-Queue: Gabe Black <gabeblack@chromium.org>
Diffstat (limited to 'firmware/arch/x86_64/include/biosincludes.h')
-rw-r--r--firmware/arch/x86_64/include/biosincludes.h46
1 files changed, 0 insertions, 46 deletions
diff --git a/firmware/arch/x86_64/include/biosincludes.h b/firmware/arch/x86_64/include/biosincludes.h
deleted file mode 100644
index 59bf931c..00000000
--- a/firmware/arch/x86_64/include/biosincludes.h
+++ /dev/null
@@ -1,46 +0,0 @@
-/* Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- *
- * X86 firmware platform-specific definitions
- */
-
-#ifndef __ARCH_X86_BIOSINCLUDES_H__
-#define __ARCH_X86_BIOSINCLUDES_H__
-
-typedef unsigned char uint8_t;
-typedef unsigned short int uint16_t;
-typedef unsigned int uint32_t;
-typedef unsigned long long uint64_t;
-typedef signed long long int64_t;
-typedef unsigned long size_t;
-
-#ifndef NULL
-#define NULL ((void*) 0)
-#endif
-
-#define UINT32_C(x) ((uint32_t) x)
-#define UINT64_C(x) ((uint64_t) x)
-#define PRIu64 "llu"
-extern void debug(const char *format, ...);
-
-#define POSSIBLY_UNUSED __attribute__((unused))
-
-#ifdef __STRICT_ANSI__
-#define INLINE
-#else
-#define INLINE inline
-#endif
-
-#define UINT64_RSHIFT(v, shiftby) (((uint64_t)(v)) >> (shiftby))
-#define UINT64_MULT32(v, multby) (((uint64_t)(v)) * ((uint32_t)(multby)))
-
-#ifndef UINT32_MAX
-#define UINT32_MAX (UINT32_C(0xffffffffU))
-#endif
-
-#ifndef UINT64_MAX
-#define UINT64_MAX (UINT64_C(0xffffffffffffffffULL))
-#endif
-
-#endif /*__ARCH_X86_BIOSINCLUDES_H__ */