PL110 byteswapping fix.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1763 c046a42c-6fe2-441c-8c8c-71466251a162
diff --git a/hw/pl110_template.h b/hw/pl110_template.h
index 1ab7777..db05035 100644
--- a/hw/pl110_template.h
+++ b/hw/pl110_template.h
@@ -92,7 +92,7 @@
 #else
 #define FN(x, y) COPY_PIXEL(d, pallette[(data >> ((x) + y)) & 1]);
 #endif
-#ifdef SWAP_BYTES
+#ifdef SWAP_WORDS
         FN_8(24)
         FN_8(16)
         FN_8(8)
@@ -119,7 +119,7 @@
 #else
 #define FN(x, y) COPY_PIXEL(d, pallette[(data >> ((x)*2 + y)) & 3]);
 #endif
-#ifdef SWAP_BYTES
+#ifdef SWAP_WORDS
         FN_4(0, 24)
         FN_4(0, 16)
         FN_4(0, 8)
@@ -146,7 +146,7 @@
 #else
 #define FN(x, y) COPY_PIXEL(d, pallette[(data >> ((x)*4 + y)) & 0xf]);
 #endif
-#ifdef SWAP_BYTES
+#ifdef SWAP_WORDS
         FN_2(0, 24)
         FN_2(0, 16)
         FN_2(0, 8)
@@ -169,7 +169,7 @@
     while (width > 0) {
         data = *(uint32_t *)src;
 #define FN(x) COPY_PIXEL(d, pallette[(data >> (x)) & 0xff]);
-#ifdef SWAP_BYTES
+#ifdef SWAP_WORDS
         FN(24)
         FN(16)
         FN(8)
@@ -192,7 +192,7 @@
     unsigned int r, g, b;
     while (width > 0) {
         data = *(uint32_t *)src;
-#ifdef SWAP_BYTES
+#ifdef SWAP_WORDS
         data = bswap32(data);
 #endif
 #if 0
@@ -229,7 +229,7 @@
     unsigned int r, g, b;
     while (width > 0) {
         data = *(uint32_t *)src;
-#ifdef SWAP_BYTES
+#ifdef SWAP_WORDS
         r = data & 0xff;
         g = (data >> 8) & 0xff;
         b = (data >> 16) & 0xff;