summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/rtems-fdt/rtems-fdt-shell.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libmisc/rtems-fdt/rtems-fdt-shell.h')
-rw-r--r--cpukit/libmisc/rtems-fdt/rtems-fdt-shell.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/cpukit/libmisc/rtems-fdt/rtems-fdt-shell.h b/cpukit/libmisc/rtems-fdt/rtems-fdt-shell.h
deleted file mode 100644
index 74e9a44aaf..0000000000
--- a/cpukit/libmisc/rtems-fdt/rtems-fdt-shell.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * COPYRIGHT (c) 2013-2017 Chris Johns <chrisj@rtems.org>
- *
- * 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.
- */
-/**
- * @file
- *
- * @ingroup rtems_fdt
- *
- * @brief RTEMS Flattened Device Tree Shell Command
- *
- * Support for loading, managing and accessing FDT blobs in RTEMS.
- */
-
-#if !defined (_RTEMS_FDT_SHELL_H_)
-#define _RTEMS_FDT_SHELL_H_
-
-#include <rtems/rtems-fdt.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif /* __cplusplus */
-
-/**
- * Add a shell command to access memory and registers associated with the DTF.
- */
-void rtems_fdt_add_shell_command (void);
-
-/**
- * Get a pointer to the handle. You can use this to load files or register
- * blobs and have the shell command access them.
- */
-rtems_fdt_handle* rtems_fdt_get_shell_handle (void);
-
-#ifdef __cplusplus
-}
-#endif /* __cplusplus */
-
-#endif