--- zzzz-none-000/linux-2.6.13.1/include/asm-generic/bug.h 2005-09-10 02:42:58.000000000 +0000 +++ ohio-7170-487/linux-2.6.13.1/include/asm-generic/bug.h 2009-06-08 14:16:52.000000000 +0000 @@ -27,15 +27,15 @@ #else /* !CONFIG_BUG */ #ifndef HAVE_ARCH_BUG -#define BUG() +#define BUG() do { continue; } while(0) #endif #ifndef HAVE_ARCH_BUG_ON -#define BUG_ON(condition) do { if (condition) ; } while(0) +#define BUG_ON(condition) do { if (condition) continue; } while(0) #endif #ifndef HAVE_ARCH_WARN_ON -#define WARN_ON(condition) do { if (condition) ; } while(0) +#define WARN_ON(condition) do { if (condition) continue; } while(0) #endif #endif