View | Details | Raw Unified | Return to bug 219882 | Differences between
and this patch

Collapse All | Expand All

(-)x86/isa/atpic.c (-3 / +2 lines)
Lines 359-370 Link Here
359
static int
359
static int
360
atpic_assign_cpu(struct intsrc *isrc, u_int apic_id)
360
atpic_assign_cpu(struct intsrc *isrc, u_int apic_id)
361
{
361
{
362
363
	/*
362
	/*
364
	 * 8259A's are only used in UP in which case all interrupts always
363
	 * 8259A's are only used in UP in which case all interrupts always
365
	 * go to the sole CPU and this function shouldn't even be called.
364
	 * go to the sole CPU.
366
	 */
365
	 */
367
	panic("%s: bad cookie", __func__);
366
	return (EOPNOTSUPP);
368
}
367
}
369
368
370
static void
369
static void

Return to bug 219882