From patchwork Thu May 9 10:36:59 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denis Efremov X-Patchwork-Id: 2543841 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from casper.infradead.org (casper.infradead.org [85.118.1.10]) by patchwork1.kernel.org (Postfix) with ESMTP id AD4253FC5A for ; Thu, 9 May 2013 10:41:58 +0000 (UTC) Received: from merlin.infradead.org ([2001:4978:20e::2]) by casper.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1UaOIC-000597-QU; Thu, 09 May 2013 10:41:45 +0000 Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1UaOI4-0002ym-4C; Thu, 09 May 2013 10:41:36 +0000 Received: from mail-lb0-f172.google.com ([209.85.217.172]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1UaOHx-0002xP-Jx for linux-arm-kernel@lists.infradead.org; Thu, 09 May 2013 10:41:30 +0000 Received: by mail-lb0-f172.google.com with SMTP id y6so2884773lbh.31 for ; Thu, 09 May 2013 03:41:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=SJ3lFFonEQK4egB3BN7qIED+xZ4RQ38MvojFjtk9wHM=; b=rpv+hvzPKYHYaAK6v1AmHpgjG/8cGeALOOsqAHDmD+dFYDOGUR+6IU0rLBdiaA8BXh yFjKGlvsIkHT2GEb9y+JZtcC3oNMNXllR1xKR5ow+itpZNoeGmnsNRmmfXPtj6A+h87Z MZd7R+sHNQtq7cyJcrZlR51ECatZzuGZZGDUtvUevoNSusdOAStTUwhUQW/Km2h1e6V7 ycP0Bd0hAJrBCSStvsqD1gbDh8NyHHE0buVj/Rd4Lu3lOputCuvDFvkFc5NSBVA9aVBC vN5G+fs+16UyL4Pm1G0cBqdadD+rV0wV9HgAxwS4sVskaPnr2rOtN+3mOVQSRJQlRb+7 RrsA== X-Received: by 10.152.87.116 with SMTP id w20mr5170452laz.0.1368096067486; Thu, 09 May 2013 03:41:07 -0700 (PDT) Received: from localhost.localdomain (95-26-197-249.broadband.corbina.ru. [95.26.197.249]) by mx.google.com with ESMTPSA id d8sm625346lae.2.2013.05.09.03.41.06 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Thu, 09 May 2013 03:41:06 -0700 (PDT) From: Denis Efremov To: Russell King Subject: [PATCH 21/21] ARM: remove inline marking of EXPORT_SYMBOL functions Date: Thu, 9 May 2013 14:36:59 +0400 Message-Id: <1368095819-11011-10-git-send-email-yefremov.denis@gmail.com> X-Mailer: git-send-email 1.8.1.4 In-Reply-To: <1368086241-9357-1-git-send-email-yefremov.denis@gmail.com> References: <1368086241-9357-1-git-send-email-yefremov.denis@gmail.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130509_064129_839772_AFA3B7D6 X-CRM114-Status: GOOD ( 11.08 ) X-Spam-Score: -2.7 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.7 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [209.85.217.172 listed in list.dnswl.org] 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (yefremov.denis[at]gmail.com) -0.0 SPF_PASS SPF: sender matches SPF record -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature Cc: ldv-project@linuxtesting.org, Denis Efremov , trivial@kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org EXPORT_SYMBOL and inline directives are contradictory to each other. The patch fixes this inconsistency. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- arch/arm/mach-sa1100/jornada720_ssp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-sa1100/jornada720_ssp.c b/arch/arm/mach-sa1100/jornada720_ssp.c index b143c46..737842c 100644 --- a/arch/arm/mach-sa1100/jornada720_ssp.c +++ b/arch/arm/mach-sa1100/jornada720_ssp.c @@ -33,7 +33,7 @@ static unsigned long jornada_ssp_flags; * we need to reverse all data we receive from the mcu due to its physical location * returns : 01110111 -> 11101110 */ -u8 inline jornada_ssp_reverse(u8 byte) +u8 jornada_ssp_reverse(u8 byte) { return ((0x80 & byte) >> 7) |