Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 292aa141 authored by Stoyan Gaydarov's avatar Stoyan Gaydarov Committed by David Howells
Browse files

MN10300: BUG to BUG_ON changes

parent 95a2f6f7
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -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 */
+1 −2
Original line number Diff line number Diff line
@@ -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)
+1 −2
Original line number Diff line number Diff line
@@ -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;
+1 −2
Original line number Diff line number Diff line
@@ -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);
		}
	}

+1 −2
Original line number Diff line number Diff line
@@ -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);
		}
	}