From: Steve Sakoman Date: Thu, 31 Jul 2008 20:37:13 +0000 (-0700) Subject: beagle: fix missing parentheses in while statement (cleanup error) X-Git-Tag: Release-2010-05/1~23 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9bb33ec5756384249457f6c5f5da7632a2dcf762;p=pandora-x-loader.git beagle: fix missing parentheses in while statement (cleanup error) --- diff --git a/board/omap3530beagle/omap3530beagle.c b/board/omap3530beagle/omap3530beagle.c index a3a8d80..79e6d71 100644 --- a/board/omap3530beagle/omap3530beagle.c +++ b/board/omap3530beagle/omap3530beagle.c @@ -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