summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-at91/include/mach/bootstrap.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/mach-at91/include/mach/bootstrap.h')
-rw-r--r--arch/arm/mach-at91/include/mach/bootstrap.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/arch/arm/mach-at91/include/mach/bootstrap.h b/arch/arm/mach-at91/include/mach/bootstrap.h
deleted file mode 100644
index a3d19dd54a..0000000000
--- a/arch/arm/mach-at91/include/mach/bootstrap.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * Copyright (C) 2012 Jean-Christophe PLAGNIOL-VILLARD <plagnio@jcrosoft.com>
- *
- * Under GPLv2
- */
-
-#ifndef __MACH_BOOTSTRAP_H__
-#define __MACH_BOOTSTRAP_H__
-
-#ifdef CONFIG_MTD_M25P80
-void * bootstrap_board_read_m25p80(void);
-#else
-static inline void * bootstrap_board_read_m25p80(void)
-{
- return NULL;
-}
-#endif
-
-#ifdef CONFIG_MTD_DATAFLASH
-void * bootstrap_board_read_dataflash(void);
-#else
-static inline void * bootstrap_board_read_dataflash(void)
-{
- return NULL;
-}
-#endif
-
-#endif /* __MACH_BOOTSTRAP_H__ */