From: arighi Date: Fri, 9 Apr 2010 14:30:21 +0000 (+0000) Subject: Coding style fixes. X-Git-Tag: 2.5.0~499 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=dfd6bde734886243cc7053d4477ff840c865a133;p=bertos.git Coding style fixes. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@3409 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/bertos/cpu/cortex-m3/drv/ssi_lm3s.c b/bertos/cpu/cortex-m3/drv/ssi_lm3s.c index 965683b2..2dc80f99 100644 --- a/bertos/cpu/cortex-m3/drv/ssi_lm3s.c +++ b/bertos/cpu/cortex-m3/drv/ssi_lm3s.c @@ -35,9 +35,11 @@ * \author Andrea Righi */ -#include -#include +#include "cfg/compiler.h" +#include "cfg/debug.h" + #include /* memset() */ + #include "ssi_lm3s.h" /* SSI clocking informations (CPSDVSR + SCR) */ diff --git a/examples/lm3s1968/hw/hw_lcd.h b/examples/lm3s1968/hw/hw_lcd.h index abffecc8..c59dcb77 100644 --- a/examples/lm3s1968/hw/hw_lcd.h +++ b/examples/lm3s1968/hw/hw_lcd.h @@ -38,8 +38,8 @@ #ifndef HW_LCD_H #define HW_LCD_H -#include /* BV() */ -#include +#include "cfg/macros.h" /* BV() */ +#include "cfg/debug.h" #include #include diff --git a/examples/lm3s1968/lm3s1968.c b/examples/lm3s1968/lm3s1968.c index 46451e5e..478f369d 100644 --- a/examples/lm3s1968/lm3s1968.c +++ b/examples/lm3s1968/lm3s1968.c @@ -35,17 +35,17 @@ * \author Andrea Righi */ -#include -#include #include #include -#include #include #include #include #include #include +#include "cfg/compiler.h" +#include "cfg/cfg_gfx.h" + #include "hw/hw_lcd.h" #define PROC_STACK_SIZE KERN_MINSTACKSIZE * 2