From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-2.9 required=3.0 tests=DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_PASS,T_DKIM_INVALID, USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1ECA5C28CF6 for ; Wed, 1 Aug 2018 16:03:23 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id BD62720841 for ; Wed, 1 Aug 2018 16:03:22 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="j8HYJFXU" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org BD62720841 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=lst.de Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2390181AbeHARtn (ORCPT ); Wed, 1 Aug 2018 13:49:43 -0400 Received: from bombadil.infradead.org ([198.137.202.133]:57294 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2389907AbeHARtm (ORCPT ); Wed, 1 Aug 2018 13:49:42 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=References:In-Reply-To:Message-Id: Date:Subject:Cc:To:From:Sender:Reply-To:MIME-Version:Content-Type: Content-Transfer-Encoding:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=O4x+rSgg+IuoAaOQeRi4pvfXOM/DOGCWDW6lkAApAxs=; b=j8HYJFXUzRR4w7R2KOG6L9WhG oXUGcIQdtpHGrLUaSdIJ1nMYjpkB6aZZ8PToOWJz6DiWNjswknLD8V/9UCZTVgCLjTtSwlKluuGV4 5wsC6JnkwhFylpKZZ/HyFJQmCd0e3fqmibV6lOPCztph9HDf/w8vLx83UKkWL+kWTz1GsINtqexC9 xmHO6N25F2yd32BaXZoPBe1/AXlqYwdfaEu78PwBxm79IRxZKU3h5Zy1WyVvhn5S2lD8woiz5rFX+ hMf0/bHUzHDy82Xh5iT/tAh+6jnW8m5XrEt/oxUCcQIddj6mBBxiJOVgXyXHbBHFfyeUazOTLSWCR Kkl1w+Tsg==; Received: from clnet-p19-102.ikbnet.co.at ([83.175.77.102] helo=localhost) by bombadil.infradead.org with esmtpsa (Exim 4.90_1 #2 (Red Hat Linux)) id 1fktag-0007er-16; Wed, 01 Aug 2018 16:03:10 +0000 From: Christoph Hellwig To: Tony Luck , Fenghua Yu Cc: David Woodhouse , linux-ia64@vger.kernel.org, linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org, iommu@lists.linux-foundation.org Subject: [PATCH 6/9] ia64: remove the unused iommu_dma_init function Date: Wed, 1 Aug 2018 18:02:49 +0200 Message-Id: <20180801160252.25629-7-hch@lst.de> X-Mailer: git-send-email 2.18.0 In-Reply-To: <20180801160252.25629-1-hch@lst.de> References: <20180801160252.25629-1-hch@lst.de> X-SRS-Rewrite: SMTP reverse-path rewritten from by bombadil.infradead.org. See http://www.infradead.org/rpr.html Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Signed-off-by: Christoph Hellwig --- arch/ia64/include/asm/iommu.h | 1 - arch/ia64/kernel/pci-dma.c | 6 ------ 2 files changed, 7 deletions(-) diff --git a/arch/ia64/include/asm/iommu.h b/arch/ia64/include/asm/iommu.h index 5397e5aa3704..7429a72f3f92 100644 --- a/arch/ia64/include/asm/iommu.h +++ b/arch/ia64/include/asm/iommu.h @@ -15,7 +15,6 @@ extern int iommu_detected; #define no_iommu (1) #define iommu_detected (0) #endif -extern void iommu_dma_init(void); extern void machvec_init(const char *name); #endif diff --git a/arch/ia64/kernel/pci-dma.c b/arch/ia64/kernel/pci-dma.c index 936af0ec7f8f..afb43677f9ca 100644 --- a/arch/ia64/kernel/pci-dma.c +++ b/arch/ia64/kernel/pci-dma.c @@ -37,12 +37,6 @@ static int __init pci_iommu_init(void) /* Must execute after PCI subsystem */ fs_initcall(pci_iommu_init); -void __init -iommu_dma_init(void) -{ - return; -} - void __init pci_iommu_alloc(void) { dma_ops = &intel_dma_ops; -- 2.18.0