Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750924AbdLZKqS (ORCPT ); Tue, 26 Dec 2017 05:46:18 -0500 Received: from mail-wm0-f68.google.com ([74.125.82.68]:47087 "EHLO mail-wm0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750705AbdLZKqQ (ORCPT ); Tue, 26 Dec 2017 05:46:16 -0500 X-Google-Smtp-Source: ACJfBossKWzQPS/Q0KhdZ2m8B7oiNQSD7mFC7hSG7ezinEoh7dYlYmr8kCfHyCrcy7PnH9Z2NVFq2A== From: Mathieu Malaterre To: Aleksandar Markovic Cc: Mathieu Malaterre , Ralf Baechle , Miodrag Dinic , Goran Ferenc , James Hogan , Douglas Leung , linux-mips@linux-mips.org, linux-kernel@vger.kernel.org Subject: [PATCH 1/2] MIPS: math-emu: Do not export function `srl128` Date: Tue, 26 Dec 2017 11:45:50 +0100 Message-Id: <20171226104554.19612-1-malat@debian.org> X-Mailer: git-send-email 2.11.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 706 Lines: 25 Fix non-fatal warning: arch/mips/math-emu/dp_maddf.c:19:6: warning: no previous prototype for ‘srl128’ [-Wmissing-prototypes] void srl128(u64 *hptr, u64 *lptr, int count) Signed-off-by: Mathieu Malaterre --- arch/mips/math-emu/dp_maddf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/mips/math-emu/dp_maddf.c b/arch/mips/math-emu/dp_maddf.c index 7ad79ed411f5..0e2278a47f43 100644 --- a/arch/mips/math-emu/dp_maddf.c +++ b/arch/mips/math-emu/dp_maddf.c @@ -16,7 +16,7 @@ /* 128 bits shift right logical with rounding. */ -void srl128(u64 *hptr, u64 *lptr, int count) +static void srl128(u64 *hptr, u64 *lptr, int count) { u64 low; -- 2.11.0