diff options
author | Stoyan Gaydarov <stoyboyker@gmail.com> | 2010-10-27 12:28:33 -0400 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2010-10-27 12:28:33 -0400 |
commit | 292aa141277b142148d15bf28104f8890616e291 (patch) | |
tree | 5a6c3c34c1b86494c73ab34a90ed9d47b17295e1 /arch/mn10300/unit-asb2303 | |
parent | 95a2f6f72d37762ba1b3d6c8031f66a6467a63df (diff) |
MN10300: BUG to BUG_ON changes
Signed-off-by: Stoyan Gaydarov <stoyboyker@gmail.com>
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'arch/mn10300/unit-asb2303')
-rw-r--r-- | arch/mn10300/unit-asb2303/include/unit/timex.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/mn10300/unit-asb2303/include/unit/timex.h b/arch/mn10300/unit-asb2303/include/unit/timex.h index f206b63c95b4..88cd96bb2527 100644 --- a/arch/mn10300/unit-asb2303/include/unit/timex.h +++ b/arch/mn10300/unit-asb2303/include/unit/timex.h | |||
@@ -50,8 +50,7 @@ static inline void startup_jiffies_counter(void) | |||
50 | md = TM0MD_SRC_IOCLK_32; | 50 | md = TM0MD_SRC_IOCLK_32; |
51 | rate = MN10300_JCCLK / 32 / HZ; | 51 | rate = MN10300_JCCLK / 32 / HZ; |
52 | 52 | ||
53 | if (rate > TMJCBR_MAX) | 53 | BUG_ON(rate > TMJCBR_MAX); |
54 | BUG(); | ||
55 | } | 54 | } |
56 | } | 55 | } |
57 | 56 | ||