From patchwork Sun Apr 15 14:59:37 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christoph Hellwig X-Patchwork-Id: 898255 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=vger.kernel.org (client-ip=209.132.180.67; helo=vger.kernel.org; envelope-from=linux-pci-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=lst.de Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=infradead.org header.i=@infradead.org header.b="nsUyohS8"; dkim-atps=neutral Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 40PF6v1Fbcz9s1l for ; Mon, 16 Apr 2018 01:00:07 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752508AbeDOPAE (ORCPT ); Sun, 15 Apr 2018 11:00:04 -0400 Received: from bombadil.infradead.org ([198.137.202.133]:58476 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752470AbeDOPAD (ORCPT ); Sun, 15 Apr 2018 11:00:03 -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=daZUjggGEJQWmZ+WM/AHhpB9+A6B5VhbNlzJlK0wIyA=; b=nsUyohS82i5OIzxJG1ISzAjpj egY9+mabJiJEkXlDR5CixxS4BfKc0Io4XgjQnFxXQ649Bcs72+Ddwucu+Avw2vdDOWJ3P+rohWRgQ lCIuvk1powUdgjPbtZ3RA4ikUAB3ZVIaFtWRx1A5lMo37xVHfDQMUovevdpQQyyzPzVPSp4DwGefe EhUZxpukLT9nsdsS4Cmnr5PNDUGpDi9cSDeVpQ8RDW5dnSGoOaPMvhtyowlqSO41Er1x3yTHHvJc1 vWw5v4JqGhULQTJc296FQHxpborWgBWEEkFt/MaH905KmRCGRp/8reQdkDDUB+MuCmJir7igL5ipz fnxBswrvA==; Received: from 089144200254.atnat0009.highway.a1.net ([89.144.200.254] helo=localhost) by bombadil.infradead.org with esmtpsa (Exim 4.90_1 #2 (Red Hat Linux)) id 1f7j8G-0005bL-0p; Sun, 15 Apr 2018 14:59:56 +0000 From: Christoph Hellwig To: Konrad Rzeszutek Wilk , iommu@lists.linux-foundation.org Cc: x86@kernel.org, linux-block@vger.kernel.org, linux-pci@vger.kernel.org, linux-mm@kvack.org, linux-ide@vger.kernel.org, linux-mips@linux-mips.org, sparclinux@vger.kernel.org, linux-arm-kernel@lists.infradead.org Subject: [PATCH 02/12] iommu-helper: unexport iommu_area_alloc Date: Sun, 15 Apr 2018 16:59:37 +0200 Message-Id: <20180415145947.1248-3-hch@lst.de> X-Mailer: git-send-email 2.17.0 In-Reply-To: <20180415145947.1248-1-hch@lst.de> References: <20180415145947.1248-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-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org This function is only used by built-in code. Reviewed-by: Christoph Hellwig Signed-off-by:.... Reviewed-by: Anshuman Khandual --- lib/iommu-helper.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/iommu-helper.c b/lib/iommu-helper.c index 23633c0fda4a..ded1703e7e64 100644 --- a/lib/iommu-helper.c +++ b/lib/iommu-helper.c @@ -3,7 +3,6 @@ * IOMMU helper functions for the free area management */ -#include #include #include @@ -38,4 +37,3 @@ unsigned long iommu_area_alloc(unsigned long *map, unsigned long size, } return -1; } -EXPORT_SYMBOL(iommu_area_alloc);