summaryrefslogtreecommitdiff
path: root/include/chromeos
diff options
context:
space:
mode:
authorTom Wai-Hong Tam <waihong@chromium.org>2011-07-25 11:20:35 +0800
committerSimon Glass <sjg@chromium.org>2011-08-29 10:59:07 -0700
commite15ae271675d02be118708ebb4498ffc7924e3f2 (patch)
tree44f29c60ac78b6ab450d0ca11968dfbd80858de3 /include/chromeos
parent462dd4c19934c1aa7388c86d6df42b6417beb080 (diff)
CHROMIUM: Remove deprecated gbb_bmpblk library.
The logic now goes into lib/vbexport/display. BUG=none TEST=build without error. Change-Id: I6f8e694c01c53cace462b08242c57b6649e6ef56 Reviewed-on: http://gerrit.chromium.org/gerrit/4643 Tested-by: Tom Wai-Hong Tam <waihong@chromium.org> Reviewed-by: Che-Liang Chiou <clchiou@chromium.org>
Diffstat (limited to 'include/chromeos')
-rw-r--r--include/chromeos/gbb_bmpblk.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/include/chromeos/gbb_bmpblk.h b/include/chromeos/gbb_bmpblk.h
deleted file mode 100644
index b6c2a1c9c1f..00000000000
--- a/include/chromeos/gbb_bmpblk.h
+++ /dev/null
@@ -1,27 +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.
- *
- * Alternatively, this software may be distributed under the terms of the
- * GNU General Public License ("GPL") version 2 as published by the Free
- * Software Foundation.
- */
-
-#ifndef __CHROMEOS_GBB_BMPBLK_H__
-#define __CHROMEOS_GBB_BMPBLK_H__
-
-enum {
- BMPBLK_OK = 0,
- BMPBLK_UNSUPPORTED_COMPRESSION,
- BMPBLK_LZMA_DECOMPRESS_FAILED,
- BMPBLK_BMP_DISPLAY_FAILED,
-};
-
-/* Print the screen info in BMP block. */
-int print_screen_info_in_bmpblk(uint8_t *gbb_start, int index);
-
-/* Display the screen on LCD. */
-int display_screen_in_bmpblk(uint8_t *gbb_start, int index);
-
-#endif /* __CHROMEOS_GBB_BMPBLK_H__ */