소스 검색

MIPS: ls1bdev: fix a compile error

rt_hw_fpu_init() is defined in mips_fpu.h,
in board.c refered it without including mips_fpu.h.

Signed-off-by: duhuanpeng <548708880@qq.com>
duhuanpeng 6 년 전
부모
커밋
a705e5e389
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      bsp/ls1bdev/drivers/board.c

+ 1 - 0
bsp/ls1bdev/drivers/board.c

@@ -16,6 +16,7 @@
 
 #include <rtthread.h>
 #include <rthw.h>
+#include <mips_fpu.h>
 
 #include "board.h"
 #include "uart.h"