]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - cpu/arm925t/omap925.c
* Add support for IceCube board (with MGT5100 and MPC5200 CPUs)
[karo-tx-uboot.git] / cpu / arm925t / omap925.c
index 1166ca695f6335901560d95cf089022263701ddf..ae62656f33d8aa0701001da7f9d58ba1f3091013 100644 (file)
@@ -41,14 +41,14 @@ void gpiosetdir(ushort mask, ushort in)
 void gpiosetout(ushort mask, ushort out)
 {
        ushort *r_ptr, r_val;
-       
+
        r_ptr = (ushort *)GPIO_DATA_OUTPUT_REG; /* set pointer */
        r_val = *r_ptr & ~mask;         /* get previous val, clear bits we want to change */
        r_val |= (out & mask);          /* set specified bits in value + plus origional ones */
-       *r_ptr = r_val;                 /* write it out */      
-/* 
+       *r_ptr = r_val;                 /* write it out */
+/*
  * gcc screwed this one up :(.
- * 
+ *
  * *(ushort *)GPIO_DATA_OUTPUT_REG = (*(ushort *)GPIO_DATA_OUTPUT_REG & ~mask) | (out & mask);
  */