From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756708AbbIYOwg (ORCPT ); Fri, 25 Sep 2015 10:52:36 -0400 Received: from smtp02.citrix.com ([66.165.176.63]:20311 "EHLO SMTP02.CITRIX.COM" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751180AbbIYOwe (ORCPT ); Fri, 25 Sep 2015 10:52:34 -0400 X-IronPort-AV: E=Sophos;i="5.17,587,1437436800"; d="scan'208";a="306128970" From: Julien Grall To: CC: , , , , "Julien Grall" Subject: [PATCH v1 1/8] xen/arm: io: remove mmio_check_t typedef Date: Fri, 25 Sep 2015 15:51:00 +0100 Message-ID: <1443192667-16112-2-git-send-email-julien.grall@citrix.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1443192667-16112-1-git-send-email-julien.grall@citrix.com> References: <1443192667-16112-1-git-send-email-julien.grall@citrix.com> MIME-Version: 1.0 Content-Type: text/plain X-DLP: MIA2 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Julien Grall This typedef is a left-over of the previous MMIO emulation implementation. Signed-off-by: Julien Grall --- Changes in v2: - Patch added --- xen/include/asm-arm/mmio.h | 1 - 1 file changed, 1 deletion(-) diff --git a/xen/include/asm-arm/mmio.h b/xen/include/asm-arm/mmio.h index 0160f09..7278bce 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); typedef int (*mmio_write_t)(struct vcpu *v, mmio_info_t *info); -typedef int (*mmio_check_t)(struct vcpu *v, paddr_t addr); struct mmio_handler_ops { mmio_read_t read_handler; -- 2.1.4