summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/shared/include/u-boot.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/shared/include/u-boot.h')
-rw-r--r--c/src/lib/libbsp/shared/include/u-boot.h66
1 files changed, 0 insertions, 66 deletions
diff --git a/c/src/lib/libbsp/shared/include/u-boot.h b/c/src/lib/libbsp/shared/include/u-boot.h
deleted file mode 100644
index 866cd9bbb0..0000000000
--- a/c/src/lib/libbsp/shared/include/u-boot.h
+++ /dev/null
@@ -1,66 +0,0 @@
-/**
- * @file
- *
- * @ingroup shared_uboot
- *
- * @brief U_BOOT Support
- */
-
-/*
- * Copyright (c) 2010-2014 embedded brains GmbH. All rights reserved.
- *
- * embedded brains GmbH
- * Dornierstr. 4
- * 82178 Puchheim
- * Germany
- * <rtems@embedded-brains.de>
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.org/license/LICENSE.
- */
-
-#ifndef LIBBSP_SHARED_U_BOOT_H
-#define LIBBSP_SHARED_U_BOOT_H
-
-#include <bsp/u-boot-config.h>
-
-#include <sys/types.h>
-#include <stdint.h>
-
-#ifdef U_BOOT_64_BIT_PHYS_SIZE
- typedef uint64_t phys_size_t;
-#else
- typedef unsigned long phys_size_t;
-#endif
-
-#ifdef U_BOOT_GENERIC_BOARD_INFO
- #include <bsp/u-boot-generic-board-info.h>
-#else
- #include <bsp/u-boot-board-info.h>
-#endif
-
-#ifdef __cplusplus
-extern "C" {
-#endif /* __cplusplus */
-
-extern bd_t bsp_uboot_board_info;
-
-/**
- * @defgroup shared_uboot U_BOOT Support
- *
- * @ingroup shared_include
- *
- * @brief U_BOOT Support Package
- */
-
-void bsp_uboot_copy_board_info(const bd_t *src);
-
-/* FIXME: Do not use this function */
-void dumpUBootBDInfo(bd_t *u);
-
-#ifdef __cplusplus
-}
-#endif /* __cplusplus */
-
-#endif /* LIBBSP_SHARED_U_BOOT_H */