Catch up with r195249, "Improve the handling of cpuset with interrupts."

Specifically, update the return type of xenpic_assign_cpu() so that this
file compiles again.

Approved by:	re (kib)
This commit is contained in:
Alan Cox 2009-07-21 16:54:11 +00:00
parent f8c44ada2e
commit 9e367360e3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=195806

View File

@ -626,7 +626,7 @@ static int xenpic_vector(struct intsrc *isrc);
static int xenpic_source_pending(struct intsrc *isrc);
static void xenpic_suspend(struct pic* pic);
static void xenpic_resume(struct pic* pic);
static void xenpic_assign_cpu(struct intsrc *, u_int apic_id);
static int xenpic_assign_cpu(struct intsrc *, u_int apic_id);
struct pic xenpic_dynirq_template = {
@ -752,10 +752,11 @@ xenpic_resume(struct pic* pic)
TODO;
}
static void
static int
xenpic_assign_cpu(struct intsrc *isrc, u_int apic_id)
{
TODO;
return (EOPNOTSUPP);
}
void