From e2542fe2bce6756948dffe2d233d154a9e25bd35 Mon Sep 17 00:00:00 2001 From: Juan Quintela Date: Mon, 27 Jul 2009 16:13:06 +0200 Subject: rename WORDS_BIGENDIAN to HOST_WORDS_BIGENDIAN Signed-off-by: Juan Quintela Signed-off-by: Anthony Liguori --- hw/omap_lcd_template.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hw/omap_lcd_template.h') diff --git a/hw/omap_lcd_template.h b/hw/omap_lcd_template.h index 0590e45010..2fb96f83ae 100644 --- a/hw/omap_lcd_template.h +++ b/hw/omap_lcd_template.h @@ -152,7 +152,7 @@ static void glue(draw_line12_, DEPTH)(void *opaque, static void glue(draw_line16_, DEPTH)(void *opaque, uint8_t *d, const uint8_t *s, int width, int deststep) { -#if DEPTH == 16 && defined(WORDS_BIGENDIAN) == defined(TARGET_WORDS_BIGENDIAN) +#if DEPTH == 16 && defined(HOST_WORDS_BIGENDIAN) == defined(TARGET_WORDS_BIGENDIAN) memcpy(d, s, width * 2); #else uint16_t v; -- cgit v1.2.3