aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common
diff options
context:
space:
mode:
authorAndrew Cooper <andrew.cooper3@citrix.com>2013-08-27 11:29:03 +0200
committerJan Beulich <jbeulich@suse.com>2013-08-27 11:29:03 +0200
commit44db24103ff1c53a13afebf4d72ad853cee07786 (patch)
treecfaf44a38b4d0d270e281e8195c88213e788eee7 /xen/common
parent8a3c4acc9907cfec9aae9f1bc251fbf50af6828e (diff)
downloadxen-44db24103ff1c53a13afebf4d72ad853cee07786.tar.gz
xen-44db24103ff1c53a13afebf4d72ad853cee07786.tar.bz2
xen-44db24103ff1c53a13afebf4d72ad853cee07786.zip
fix gdbstub build c/s c8177e691f
That changeset moved the watchdog functions from nmi.h to their own watchdog.h. I thought I had updated all relevant header files and the compiler was happy as well. However, gdbstub is not even compiled by default, and I accidentally missed it. Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
Diffstat (limited to 'xen/common')
-rw-r--r--xen/common/gdbstub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/common/gdbstub.c b/xen/common/gdbstub.c
index 2baa91a238..67ff726b21 100644
--- a/xen/common/gdbstub.c
+++ b/xen/common/gdbstub.c
@@ -38,7 +38,7 @@
#include <xen/spinlock.h>
#include <xen/serial.h>
#include <xen/irq.h>
-#include <xen/nmi.h>
+#include <xen/watchdog.h>
#include <asm/debugger.h>
#include <xen/init.h>
#include <xen/smp.h>