Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 218698
b: refs/heads/master
c: 292aa14
h: refs/heads/master
v: v3
  • Loading branch information
Stoyan Gaydarov authored and David Howells committed Oct 27, 2010
1 parent d339d88 commit 8508c03
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 95a2f6f72d37762ba1b3d6c8031f66a6467a63df
refs/heads/master: 292aa141277b142148d15bf28104f8890616e291
3 changes: 1 addition & 2 deletions trunk/arch/mn10300/kernel/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,7 @@ asmlinkage void do_IRQ(void)
int irq;

sp = current_stack_pointer();
if (sp - (sp & ~(THREAD_SIZE - 1)) < STACK_WARN)
BUG();
BUG_ON(sp - (sp & ~(THREAD_SIZE - 1)) < STACK_WARN);

/* make sure local_irq_enable() doesn't muck up the interrupt priority
* setting in EPSW */
Expand Down
3 changes: 1 addition & 2 deletions trunk/arch/mn10300/mm/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,7 @@ void __init mem_init(void)
int codesize, reservedpages, datasize, initsize;
int tmp;

if (!mem_map)
BUG();
BUG_ON(!mem_map);

#define START_PFN (contig_page_data.bdata->node_min_pfn)
#define MAX_LOW_PFN (contig_page_data.bdata->node_low_pfn)
Expand Down
3 changes: 1 addition & 2 deletions trunk/arch/mn10300/mm/misalignment.c
Original file line number Diff line number Diff line change
Expand Up @@ -449,8 +449,7 @@ asmlinkage void misalignment(struct pt_regs *regs, enum exception_code code)
regs->pc, opcode, pop->opcode, pop->params[0], pop->params[1]);

tmp = format_tbl[pop->format].opsz;
if (tmp > noc)
BUG(); /* match was less complete than it ought to have been */
BUG_ON(tmp > noc); /* match was less complete than it ought to have been */

if (tmp < noc) {
tmp = noc - tmp;
Expand Down
3 changes: 1 addition & 2 deletions trunk/arch/mn10300/unit-asb2303/include/unit/timex.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@ static inline void startup_jiffies_counter(void)
md = TM0MD_SRC_IOCLK_32;
rate = MN10300_JCCLK / 32 / HZ;

if (rate > TMJCBR_MAX)
BUG();
BUG_ON(rate > TMJCBR_MAX);
}
}

Expand Down
3 changes: 1 addition & 2 deletions trunk/arch/mn10300/unit-asb2305/include/unit/timex.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@ static inline void startup_jiffies_counter(void)
md = TM0MD_SRC_IOCLK_32;
rate = MN10300_JCCLK / 32 / HZ;

if (rate > TMJCBR_MAX)
BUG();
BUG_ON(rate > TMJCBR_MAX);
}
}

Expand Down

0 comments on commit 8508c03

Please sign in to comment.