summaryrefslogtreecommitdiff
path: root/firmware/stub
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/stub
parente064ab4e90be4b9660fbc66c09b290783114825f (diff)
downloadvboot-77f55ca1cd282ac6c540ea3a8bacbc35c2600d60.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/stub')
-rw-r--r--firmware/stub/include/biosincludes.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/firmware/stub/include/biosincludes.h b/firmware/stub/include/biosincludes.h
deleted file mode 100644
index 817edfd0..00000000
--- a/firmware/stub/include/biosincludes.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/* Copyright (c) 2010 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.
- */
-#ifndef CHROMEOS_SRC_PLATFORM_VBOOT_REFERENCE_FIRMWARE_STUB_BIOSINCLUDES_H_
-#define CHROMEOS_SRC_PLATFORM_VBOOT_REFERENCE_FIRMWARE_STUB_BIOSINCLUDES_H_
-
-/*
- * This file is a placeholder for the includes supplied by the BIOS
- * compilation environment. This file is included if and only if
- * CHROMEOS_ENVIRONMENT is not defined at compilation time.
- */
-
-#ifdef TARGET_TEST_MODE
-
-typedef unsigned long long uint64_t;
-typedef long long int64_t;
-typedef unsigned int uint32_t;
-typedef unsigned short uint16_t;
-typedef unsigned char uint8_t;
-typedef unsigned size_t;
-
-#ifndef NULL
-#define NULL ((void*) 0)
-#endif
-
-#define UINT32_C(x) ((uint32_t)x)
-#define UINT64_C(x) ((uint64_t)x)
-#define __attribute__(x)
-#define PRIu64 "llu"
-extern void debug(const char *format, ...);
-
-#define POSSIBLY_UNUSED
-#define INLINE
-
-#else
-
-#warning "No FIRMARE_ARCH defined and not TARGET_TEST_MODE"
-
-#endif
-
-#endif /*CHROMEOS_SRC_PLATFORM_VBOOT_REFERENCE_FIRMWARE_STUB_BIOSINCLUDES_H_*/