aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStoyan Gaydarov <stoyboyker@gmail.com>2010-10-27 12:28:33 -0400
committerDavid Howells <dhowells@redhat.com>2010-10-27 12:28:33 -0400
commit292aa141277b142148d15bf28104f8890616e291 (patch)
tree5a6c3c34c1b86494c73ab34a90ed9d47b17295e1
parent95a2f6f72d37762ba1b3d6c8031f66a6467a63df (diff)
MN10300: BUG to BUG_ON changes
Signed-off-by: Stoyan Gaydarov <stoyboyker@gmail.com> Signed-off-by: David Howells <dhowells@redhat.com>
-rw-r--r--arch/mn10300/kernel/irq.c3
-rw-r--r--arch/mn10300/mm/init.c3
-rw-r--r--arch/mn10300/mm/misalignment.c3
-rw-r--r--arch/mn10300/unit-asb2303/include/unit/timex.h3
-rw-r--r--arch/mn10300/unit-asb2305/include/unit/timex.h3
5 files changed, 5 insertions, 10 deletions
diff --git a/arch/mn10300/kernel/irq.c b/arch/mn10300/kernel/irq.c
index e2d5ed891f37..b5b970d2954a 100644
--- a/arch/mn10300/kernel/irq.c
+++ b/arch/mn10300/kernel/irq.c
@@ -159,8 +159,7 @@ asmlinkage void do_IRQ(void)
159 int irq; 159 int irq;
160 160
161 sp = current_stack_pointer(); 161 sp = current_stack_pointer();
162 if (sp - (sp & ~(THREAD_SIZE - 1)) < STACK_WARN) 162 BUG_ON(sp - (sp & ~(THREAD_SIZE - 1)) < STACK_WARN);
163 BUG();
164 163
165 /* make sure local_irq_enable() doesn't muck up the interrupt priority 164 /* make sure local_irq_enable() doesn't muck up the interrupt priority
166 * setting in EPSW */ 165 * setting in EPSW */
diff --git a/arch/mn10300/mm/init.c b/arch/mn10300/mm/init.c
index 6e6bc0e51521..f86c28315a8e 100644
--- a/arch/mn10300/mm/init.c
+++ b/arch/mn10300/mm/init.c
@@ -84,8 +84,7 @@ void __init mem_init(void)
84 int codesize, reservedpages, datasize, initsize; 84 int codesize, reservedpages, datasize, initsize;
85 int tmp; 85 int tmp;
86 86
87 if (!mem_map) 87 BUG_ON(!mem_map);
88 BUG();
89 88
90#define START_PFN (contig_page_data.bdata->node_min_pfn) 89#define START_PFN (contig_page_data.bdata->node_min_pfn)
91#define MAX_LOW_PFN (contig_page_data.bdata->node_low_pfn) 90#define MAX_LOW_PFN (contig_page_data.bdata->node_low_pfn)
diff --git a/arch/mn10300/mm/misalignment.c b/arch/mn10300/mm/misalignment.c
index 6dffbf97ac26..eef989c1d0c1 100644
--- a/arch/mn10300/mm/misalignment.c
+++ b/arch/mn10300/mm/misalignment.c
@@ -449,8 +449,7 @@ found_opcode:
449 regs->pc, opcode, pop->opcode, pop->params[0], pop->params[1]); 449 regs->pc, opcode, pop->opcode, pop->params[0], pop->params[1]);
450 450
451 tmp = format_tbl[pop->format].opsz; 451 tmp = format_tbl[pop->format].opsz;
452 if (tmp > noc) 452 BUG_ON(tmp > noc); /* match was less complete than it ought to have been */
453 BUG(); /* match was less complete than it ought to have been */
454 453
455 if (tmp < noc) { 454 if (tmp < noc) {
456 tmp = noc - tmp; 455 tmp = noc - tmp;
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
diff --git a/arch/mn10300/unit-asb2305/include/unit/timex.h b/arch/mn10300/unit-asb2305/include/unit/timex.h
index d1c72d59fa9f..0860186eedb2 100644
--- a/arch/mn10300/unit-asb2305/include/unit/timex.h
+++ b/arch/mn10300/unit-asb2305/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