From: Julien Grall Date: Wed, 7 Oct 2015 14:41:03 +0000 (+0100) Subject: xen/arm: io: remove mmio_check_t typedef X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~2407 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=be8412ae5a0214554c5affc00625bc91eb37f81b;p=xen.git xen/arm: io: remove mmio_check_t typedef This typedef is a left-over of the previous MMIO emulation implementation. Signed-off-by: Julien Grall Acked-by: Ian Campbell --- diff --git a/xen/include/asm-arm/mmio.h b/xen/include/asm-arm/mmio.h index 1cd7a7a61e..d9b5da42b5 100644 --- a/xen/include/asm-arm/mmio.h +++ b/xen/include/asm-arm/mmio.h @@ -34,7 +34,6 @@ typedef struct typedef int (*mmio_read_t)(struct vcpu *v, mmio_info_t *info, void *priv); typedef int (*mmio_write_t)(struct vcpu *v, mmio_info_t *info, void *priv); -typedef int (*mmio_check_t)(struct vcpu *v, paddr_t addr); struct mmio_handler_ops { mmio_read_t read;