Remove CVS logs.
[bertos.git] / cpu / avr / drv / lcd_32122a_avr.c
index 3ae230559926d9251b3fe7215585aa7c918d0d97..f635d414a7f840bdd6c293ea00eec96591ee3089 100644 (file)
  * \brief Displaytech 32122A LCD driver
  */
 
-/*#*
- *#* $Log$
- *#* Revision 1.5  2006/07/19 12:56:25  bernie
- *#* Convert to new Doxygen style.
- *#*
- *#* Revision 1.4  2006/04/27 05:40:11  bernie
- *#* Naming convention fixes; Partial merge from project_grl.
- *#*
- *#* Revision 1.3  2006/02/10 12:35:31  bernie
- *#* Enforce CONFIG_* definitions.
- *#*
- *#* Revision 1.2  2006/01/23 23:11:27  bernie
- *#* Use RASTER_SIZE() to compute... err... the raster size.
- *#*
- *#* Revision 1.1  2006/01/16 03:50:57  bernie
- *#* Import into DevLib.
- *#*
- *#*/
-
 #include "lcd_32122a_avr.h"
 #include <gfx/gfx.h>
 #include <drv/timer.h>
 
-#include <cpu/cpu.h>
+#include <cpu/irq.h>
+#include <cpu/types.h>
 #include <hw.h>
 #include <cfg/macros.h> /* BV() */
 #include <cfg/debug.h>
@@ -271,7 +253,7 @@ MOD_DEFINE(lcd)
  * as required by the LCD driver.
  */
 DECLARE_WALL(wall_before_raster, WALL_SIZE)
-static uint8_t lcd_raster[RASTER_SIZE(LCD_WIDTH, LCD_HEIGHT)];
+static uint8_t lcd_raster[RAST_SIZE(LCD_WIDTH, LCD_HEIGHT)];
 DECLARE_WALL(wall_after_raster, WALL_SIZE)
 
 /** Default LCD bitmap */