forked from Minki/linux
parisc: trivial fixes
trivial fixes: - use KERN_WARNING for printk() - use BUG_ON() instead of "if (xx) BUG();" Signed-off-by: Helge Deller <deller@gmx.de> Signed-off-by: Kyle McMartin <kyle@mcmartin.ca> -- To unsubscribe from this list: send the line "unsubscribe linux-parisc" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
This commit is contained in:
parent
70da2d9630
commit
7f2347a44d
@ -421,5 +421,5 @@ void __init init_IRQ(void)
|
||||
|
||||
void ack_bad_irq(unsigned int irq)
|
||||
{
|
||||
printk("unexpected IRQ %d\n", irq);
|
||||
printk(KERN_WARNING "unexpected IRQ %d\n", irq);
|
||||
}
|
||||
|
@ -224,10 +224,7 @@ send_IPI_mask(cpumask_t mask, enum ipi_message_type op)
|
||||
static inline void
|
||||
send_IPI_single(int dest_cpu, enum ipi_message_type op)
|
||||
{
|
||||
if (dest_cpu == NO_PROC_ID) {
|
||||
BUG();
|
||||
return;
|
||||
}
|
||||
BUG_ON(dest_cpu == NO_PROC_ID);
|
||||
|
||||
ipi_send(dest_cpu, op);
|
||||
}
|
||||
@ -309,8 +306,7 @@ smp_cpu_init(int cpunum)
|
||||
/* Initialise the idle task for this CPU */
|
||||
atomic_inc(&init_mm.mm_count);
|
||||
current->active_mm = &init_mm;
|
||||
if(current->mm)
|
||||
BUG();
|
||||
BUG_ON(current->mm);
|
||||
enter_lazy_tlb(&init_mm, current);
|
||||
|
||||
init_IRQ(); /* make sure no IRQs are enabled or pending */
|
||||
|
Loading…
Reference in New Issue
Block a user