summaryrefslogtreecommitdiff
path: root/nuttx/arch
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-03-01 15:58:25 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-03-01 15:58:25 +0000
commit662b6887a56f84fefde2f38e8e1a34bcd28fbe06 (patch)
tree1c79f87c5657135df572edf71d109ac57515c474 /nuttx/arch
parent2dd6b958687c7b8fa9b67c1ed6dcd16a214cd6f9 (diff)
downloadpx4-nuttx-662b6887a56f84fefde2f38e8e1a34bcd28fbe06.tar.gz
px4-nuttx-662b6887a56f84fefde2f38e8e1a34bcd28fbe06.tar.bz2
px4-nuttx-662b6887a56f84fefde2f38e8e1a34bcd28fbe06.zip
up_earlyserialinit is not used on these platforms
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1547 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/arch')
-rw-r--r--nuttx/arch/z80/src/common/up_internal.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/nuttx/arch/z80/src/common/up_internal.h b/nuttx/arch/z80/src/common/up_internal.h
index 9aab1e7a9..bd0917bc8 100644
--- a/nuttx/arch/z80/src/common/up_internal.h
+++ b/nuttx/arch/z80/src/common/up_internal.h
@@ -67,7 +67,6 @@
#if CONFIG_NFILE_DESCRIPTORS == 0 || defined(CONFIG_DEV_LOWCONSOLE)
# undef CONFIG_USE_SERIALDRIVER
-# undef CONFIG_USE_EARLYSERIALINIT
# ifdef CONFIG_HAVE_LOWUARTINIT
# define CONFIG_USE_LOWUARTINIT 1
# else
@@ -75,7 +74,6 @@
# endif
#elif defined(CONFIG_DEV_CONSOLE) && CONFIG_NFILE_DESCRIPTORS > 0
# define CONFIG_USE_SERIALDRIVER 1
-# define CONFIG_USE_EARLYSERIALINIT 1
# undef CONFIG_USE_LOWUARTINIT
#endif
@@ -125,10 +123,8 @@ void up_addregion(void);
/* Defined in up_serial.c */
#ifdef CONFIG_USE_SERIALDRIVER
-EXTERN void up_earlyserialinit(void);
EXTERN void up_serialinit(void);
#else
-# define up_earlyserialinit()
# define up_serialinit()
#endif