ppc4xx: Fix PMC405DE support
[oweals/u-boot.git] / board / innokom / innokom.c
index da238da6c79d18cf06a26b32ec8e87eaebdf2729..c2b88ae16ad20467ee2477f78101436a8b7b8783 100644 (file)
@@ -27,6 +27,8 @@
 #include <asm/arch/pxa-regs.h>
 #include <asm/mach-types.h>
 
+DECLARE_GLOBAL_DATA_PTR;
+
 #ifdef CONFIG_SHOW_BOOT_PROGRESS
 # define SHOW_BOOT_PROGRESS(arg)        show_boot_progress(arg)
 #else
@@ -46,10 +48,10 @@ int i2c_init_board(void)
        /* disable I2C controller first, otherwhise it thinks we want to    */
        /* talk to the slave port...                                        */
        icr = ICR; ICR &= ~(ICR_SCLE | ICR_IUE);
-       
+
        /* set gpio pin low _before_ we change direction to output          */
        GPCR(70) = GPIO_bit(70);
-       
+
        /* now toggle between output=low and high-impedance                 */
        for (i = 0; i < 20; i++) {
                GPDR(70) |= GPIO_bit(70);  /* output */
@@ -70,7 +72,7 @@ int i2c_init_board(void)
 
 int misc_init_r(void)
 {
-       uchar *str;
+       char *str;
 
        /* determine if the software update key is pressed during startup   */
        if (GPLR0 & 0x00000800) {
@@ -95,8 +97,6 @@ int misc_init_r(void)
 
 int board_init (void)
 {
-       DECLARE_GLOBAL_DATA_PTR;
-
        /* memory and cpu-speed are setup before relocation */
        /* so we do _nothing_ here */
 
@@ -116,8 +116,6 @@ int board_init (void)
 
 int dram_init (void)
 {
-       DECLARE_GLOBAL_DATA_PTR;
-
        gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
        gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
 
@@ -144,18 +142,18 @@ void innokom_set_led(int led, int state)
                        break;
 
                case 1: if (state==1) {
-                                GPCR0 |= CSB226_USER_LED1;
-                        } else if (state==0) {
-                                GPSR0 |= CSB226_USER_LED1;
-                        }
-                        break;
+                               GPCR0 |= CSB226_USER_LED1;
+                       } else if (state==0) {
+                               GPSR0 |= CSB226_USER_LED1;
+                       }
+                       break;
 
                case 2: if (state==1) {
-                                GPCR0 |= CSB226_USER_LED2;
-                        } else if (state==0) {
-                                GPSR0 |= CSB226_USER_LED2;
-                        }
-                        break;
+                               GPCR0 |= CSB226_USER_LED2;
+                       } else if (state==0) {
+                               GPSR0 |= CSB226_USER_LED2;
+                       }
+                       break;
 */
        }
 
@@ -184,4 +182,3 @@ void show_boot_progress (int status)
 
        return;
 }
-