summaryrefslogtreecommitdiffstats
path: root/bsps/include
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-04-24 06:37:06 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-04-24 08:04:52 +0200
commit65e59cc07056a1a0362bcb2f8dcd430986f3c965 (patch)
tree11c7fda8dd1c63e631794c8b1849e723a2fc9032 /bsps/include
parentbsps: Remove obsolete documentation (diff)
downloadrtems-65e59cc07056a1a0362bcb2f8dcd430986f3c965.tar.bz2
bsps/arm: Move bsp_memory_management_initialize()
This function is only used by the raspberrypi BSP. This patch is a part of the BSP source reorganization. Update #3285.
Diffstat (limited to 'bsps/include')
-rw-r--r--bsps/include/bsp/mm.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/bsps/include/bsp/mm.h b/bsps/include/bsp/mm.h
deleted file mode 100644
index 2152f686ba..0000000000
--- a/bsps/include/bsp/mm.h
+++ /dev/null
@@ -1,41 +0,0 @@
-/**
- * @file
- *
- * @ingroup shared_mm
- *
- * @brief MM Support
- */
-
-/*
- * Copyright (c) 2013 Hesham AL-Matary.
- * Copyright (c) 2013 Gedare Bloom.
- *
- * 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_MM_H
-#define __LIBBSP_MM_H
-
-#include <stdint.h>
-#include <stdlib.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/**
- * @defgroup shared_mm MM Support
- *
- * @ingroup shared_include
- *
- * @brief MM Support Package
- */
-
-void bsp_memory_management_initialize(void);
-
-#ifdef __cplusplus
-}
-#endif
-#endif