From: Konrad Rzeszutek Wilk Date: Tue, 9 Feb 2016 12:19:53 +0000 (+0100) Subject: arm/keyhandler: declare struct cpu_user_regs X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=d1d181328d29f183ffd7fcfe3aa88b2b03f6e6a9;p=people%2Fliuw%2Flibxenctrl-split%2Fxen.git arm/keyhandler: declare struct cpu_user_regs in the keyhandler.h file. Otherwise on ARM builds if we just use the keyhandler file - the compile will fail. Signed-off-by: Konrad Rzeszutek Wilk --- diff --git a/xen/include/xen/keyhandler.h b/xen/include/xen/keyhandler.h index 39052b5e99..06c05c8723 100644 --- a/xen/include/xen/keyhandler.h +++ b/xen/include/xen/keyhandler.h @@ -24,6 +24,7 @@ typedef void (keyhandler_fn_t)(unsigned char key); * * Called in hardirq context with interrupts disabled. */ +struct cpu_user_regs; typedef void (irq_keyhandler_fn_t)(unsigned char key, struct cpu_user_regs *regs);