From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Subject: [PATCH 04/12] arm: remove some unnecessary symbols from dummy.S Date: Fri, 20 Jan 2012 12:06:30 +0000 Message-ID: <1327061198-29854-4-git-send-email-ian.campbell@citrix.com> References: <1327061025.30054.21.camel@zakaz.uk.xensource.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1327061025.30054.21.camel@zakaz.uk.xensource.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: xen-devel@lists.xensource.com Cc: Ian Campbell List-Id: xen-devel@lists.xenproject.org Correct the comment on the DUMMY macro. Signed-off-by: Ian Campbell --- xen/arch/arm/dummy.S | 8 +------- 1 files changed, 1 insertions(+), 7 deletions(-) diff --git a/xen/arch/arm/dummy.S b/xen/arch/arm/dummy.S index 5bc4f21..fff7d7e 100644 --- a/xen/arch/arm/dummy.S +++ b/xen/arch/arm/dummy.S @@ -1,8 +1,6 @@ -/* Nothing is mapped at 1G, for the moment */ #define DUMMY(x) \ .globl x; \ -x: .word 0xe7f000f0 -/* x: mov r0, #0x40000000 ; str r0, [r0]; b x */ +x: .word 0xe7f000f0 /* Undefined instruction */ #define NOP(x) \ .globl x; \ @@ -35,15 +33,11 @@ DUMMY(get_page); DUMMY(get_page_type); DUMMY(gmfn_to_mfn); DUMMY(gnttab_clear_flag); -DUMMY(gnttab_host_mapping_get_page_type); DUMMY(gnttab_mark_dirty); DUMMY(hypercall_create_continuation); DUMMY(iommu_map_page); DUMMY(iommu_unmap_page); DUMMY(is_iomem_page); -DUMMY(local_event_delivery_enable); -DUMMY(local_events_need_delivery); -DUMMY(machine_to_phys_mapping_valid); DUMMY(max_page); DUMMY(node_online_map); DUMMY(nr_irqs_gsi); -- 1.7.2.5