From 12583864aef28a5e7aab5d9185edbbea7ef68b05 Mon Sep 17 00:00:00 2001 From: Julien Grall Date: Sun, 4 Oct 2015 18:05:50 +0100 Subject: [PATCH] amd64,i386: Don't include intr_machdep.h in support.S With the update of the Xen headers, the number of event channel are now based on sizeof and other types which can't be used in assembly. Simply drop the inclusion as nothing defined in intr_machinedep.h is used within support.S --- sys/amd64/amd64/support.S | 1 - sys/i386/i386/support.s | 1 - 2 files changed, 2 deletions(-) diff --git a/sys/amd64/amd64/support.S b/sys/amd64/amd64/support.S index f8b75ffdc2e5..aea25daa24b5 100644 --- a/sys/amd64/amd64/support.S +++ b/sys/amd64/amd64/support.S @@ -33,7 +33,6 @@ #include "opt_ddb.h" #include -#include #include #include "assym.s" diff --git a/sys/i386/i386/support.s b/sys/i386/i386/support.s index 78d76efd5c42..63912b6aba86 100644 --- a/sys/i386/i386/support.s +++ b/sys/i386/i386/support.s @@ -33,7 +33,6 @@ #include #include -#include #include #include -- 2.39.5