From patchwork Sat Dec 4 03:59:26 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Julian Calaby X-Patchwork-Id: 74240 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 941B8B70A3 for ; Sat, 4 Dec 2010 14:59:32 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754520Ab0LDD7b (ORCPT ); Fri, 3 Dec 2010 22:59:31 -0500 Received: from mail-gy0-f174.google.com ([209.85.160.174]:33286 "EHLO mail-gy0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754475Ab0LDD7b (ORCPT ); Fri, 3 Dec 2010 22:59:31 -0500 Received: by gyb11 with SMTP id 11so5157296gyb.19 for ; Fri, 03 Dec 2010 19:59:30 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :content-type:content-transfer-encoding; bh=FsXWA1eL5okzRP4QCUPIGcWkEK9R7HSQrit9MlchejU=; b=eYAMr+kV4FOxwMDb8fkwdkblaPzzhutXS9xCDAUg/1mI7F75xvaoZbC0mq73aTSzrA Ge5aExJBBzwHs82epN5B5oNcCuuV1Y6iTsTrpTf6CLrCrDqZf1wIZyYj2PxSnlSI27yy wASh+ifocwYwNdeD4fPmOWxgCIHpq6Iso0Bg4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; b=j/ryvKKPkd1lHNBPx96NfrmMa2NZm5+nU9C3KsEIW2phU2E1JdrFNKZVP/gze5wvt/ ApXyiO65Z59a1kh8NTyY8Jh/hmUOnw//nVmUiavfxjCyFAQtCy5sUY0X2CNv4S9A3skw 1rcv/u20jI4ai/niXc1Hl1qPqwbxzLq/mntTk= Received: by 10.150.137.8 with SMTP id k8mr5035183ybd.163.1291435170374; Fri, 03 Dec 2010 19:59:30 -0800 (PST) Received: from [192.168.2.4] (124-168-89-61.dyn.iinet.net.au [124.168.89.61]) by mx.google.com with ESMTPS id r18sm1734489yba.3.2010.12.03.19.59.28 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 03 Dec 2010 19:59:29 -0800 (PST) Message-ID: <4CF9BC9E.40409@gmail.com> Date: Sat, 04 Dec 2010 14:59:26 +1100 From: Julian Calaby User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.15) Gecko/20101030 Icedove/3.0.10 MIME-Version: 1.0 To: sparclinux@vger.kernel.org CC: davem@davemloft.net Subject: [RFC 7/8] sparc: prom: Make prom_console_write_buf() static References: In-Reply-To: Sender: sparclinux-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: sparclinux@vger.kernel.org Signed-off-by: Julian Calaby --- arch/sparc/prom/printf.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe sparclinux" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/arch/sparc/prom/printf.c b/arch/sparc/prom/printf.c index 590b985..187e2fa 100644 --- a/arch/sparc/prom/printf.c +++ b/arch/sparc/prom/printf.c @@ -82,7 +82,7 @@ static int __prom_console_write_buf(const char *buf, int len) #endif -void prom_console_write_buf(const char *buf, int len) +static void prom_console_write_buf(const char *buf, int len) { while (len) { int n = __prom_console_write_buf(buf, len);