[ion] Board: remove shutdown method

- It should shutdown the ExternalFlash
- But it cannot be done in one function because some code need to be
in the external flash and some other in the internal flash.
This commit is contained in:
Émilie Feral
2019-06-11 14:48:54 -04:00
parent e668f5f5fe
commit ebe1735294
2 changed files with 0 additions and 6 deletions

View File

@@ -18,11 +18,6 @@ namespace Board {
using namespace Regs;
void shutdown() {
shutdownPeripherals();
shutdownClocks();
}
void initFPU() {
// http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0553a/BABDBFBJ.html
CORTEX.CPACR()->setAccess(10, CORTEX::CPACR::Access::Full);

View File

@@ -6,7 +6,6 @@ namespace Device {
namespace Board {
void init();
void shutdown();
void initFPU();
void initClocks();