forked from nuttx/nuttx-update
arch: Remove up_puts prototype from up_inernal.h
since it's defined in include/nuttx/arch.h now Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
parent
90c01bde28
commit
17d1a48fc9
11 changed files with 0 additions and 14 deletions
|
@ -428,7 +428,6 @@ void arm_restorefpu(const uint32_t *regs);
|
|||
/* Low level serial output **************************************************/
|
||||
|
||||
void arm_lowputc(char ch);
|
||||
void up_puts(const char *str);
|
||||
void arm_lowputs(const char *str);
|
||||
|
||||
#ifdef USE_SERIALDRIVER
|
||||
|
|
|
@ -114,7 +114,6 @@ void weak_function up_dma_initialize(void);
|
|||
#endif
|
||||
void up_sigdeliver(void);
|
||||
void up_lowputc(char ch);
|
||||
void up_puts(const char *str);
|
||||
void up_lowputs(const char *str);
|
||||
void up_dumpstate(void);
|
||||
|
||||
|
|
|
@ -162,7 +162,6 @@ void rpmsg_serialinit(void);
|
|||
#endif
|
||||
|
||||
void up_lowputc(char ch);
|
||||
void up_puts(const char *str);
|
||||
void up_lowputs(const char *str);
|
||||
|
||||
/* Memory configuration */
|
||||
|
|
|
@ -184,7 +184,6 @@ void up_copystate(uint32_t *dest, uint32_t *src);
|
|||
|
||||
/* Serial output */
|
||||
|
||||
void up_puts(const char *str);
|
||||
void up_lowputs(const char *str);
|
||||
|
||||
/* Debug */
|
||||
|
|
|
@ -269,7 +269,6 @@ uint32_t *or1k_syscall(uint32_t *regs);
|
|||
/* Low level serial output **************************************************/
|
||||
|
||||
void up_lowputc(char ch);
|
||||
void up_puts(const char *str);
|
||||
void up_lowputs(const char *str);
|
||||
|
||||
#ifdef USE_SERIALDRIVER
|
||||
|
|
|
@ -141,7 +141,6 @@ void up_sigdeliver(void);
|
|||
void up_syscall(uint32_t *regs);
|
||||
void up_undefinedinsn(uint32_t *regs);
|
||||
void up_lowputc(char ch);
|
||||
void up_puts(const char *str);
|
||||
void up_lowputs(const char *str);
|
||||
|
||||
/* Defined in xyz_vectors.S */
|
||||
|
|
|
@ -181,7 +181,6 @@ void up_copystate(uint32_t *dest, uint32_t *src);
|
|||
|
||||
/* Serial output */
|
||||
|
||||
void up_puts(const char *str);
|
||||
void up_lowputs(const char *str);
|
||||
|
||||
/* Defined in drivers/lowconsole.c */
|
||||
|
|
|
@ -178,7 +178,6 @@ void up_fullcontextrestore(uint32_t *restoreregs) noreturn_function;
|
|||
void up_switchcontext(uint32_t *saveregs, uint32_t *restoreregs);
|
||||
void up_sigdeliver(void);
|
||||
void up_lowputc(char ch);
|
||||
void up_puts(const char *str);
|
||||
void up_lowputs(const char *str);
|
||||
|
||||
void up_syscall(uint32_t *regs);
|
||||
|
|
|
@ -198,7 +198,6 @@ void up_fullcontextrestore(uint64_t *restoreregs) noreturn_function;
|
|||
void up_switchcontext(uint64_t *saveregs, uint64_t *restoreregs);
|
||||
void up_sigdeliver(void);
|
||||
void up_lowputc(char ch);
|
||||
void up_puts(const char *str);
|
||||
void up_lowputs(const char *str);
|
||||
void up_restore_auxstate(struct tcb_s *rtcb);
|
||||
void up_checktasks(void);
|
||||
|
|
|
@ -233,7 +233,6 @@ void xtensa_copystate(uint32_t *dest, uint32_t *src);
|
|||
|
||||
/* Serial output */
|
||||
|
||||
void up_puts(const char *str);
|
||||
void up_lowputs(const char *str);
|
||||
|
||||
/* Debug */
|
||||
|
|
|
@ -111,10 +111,6 @@ void rpmsg_serialinit(void);
|
|||
# define rpmsg_serialinit()
|
||||
#endif
|
||||
|
||||
/* Low level string output */
|
||||
|
||||
void up_puts(const char *str);
|
||||
|
||||
/* Architecture specific hook into the timer interrupt handler */
|
||||
|
||||
#ifdef CONFIG_ARCH_TIMERHOOK
|
||||
|
|
Loading…
Reference in a new issue