beagle: fix missing parentheses in while statement (cleanup error)
authorSteve Sakoman <steve@sakoman.com>
Thu, 31 Jul 2008 20:37:13 +0000 (13:37 -0700)
committerSteve Sakoman <steve@sakoman.com>
Thu, 31 Jul 2008 20:37:13 +0000 (13:37 -0700)
board/omap3530beagle/omap3530beagle.c

index a3a8d80..79e6d71 100644 (file)
@@ -209,7 +209,7 @@ u32 wait_on_value(u32 read_bit_mask, u32 match_value, u32 read_addr, u32 bound)
                        return 1;
                if (i == bound)
                        return 0;
-       } while 1;
+       } while (1);
 }
 
 #ifdef CFG_3430SDRAM_DDR