Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751537AbZJPW0U (ORCPT ); Fri, 16 Oct 2009 18:26:20 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1750911AbZJPW0U (ORCPT ); Fri, 16 Oct 2009 18:26:20 -0400 Received: from exprod6ob113.obsmtp.com ([64.18.1.30]:34841 "HELO psmtp.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with SMTP id S1750781AbZJPW0T convert rfc822-to-8bit (ORCPT ); Fri, 16 Oct 2009 18:26:19 -0400 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7BIT Subject: [PATCH] jiffies.c: fix symbol was not declared noise Date: Fri, 16 Oct 2009 18:26:22 -0400 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: [PATCH] jiffies.c: fix symbol was not declared noise Thread-Index: AcpOr7CfYxxVaqWsRS28sgYF14x1pA== From: "H Hartley Sweeten" To: X-OriginalArrivalTime: 16 Oct 2009 22:26:23.0176 (UTC) FILETIME=[B125AC80:01CA4EAF] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 812 Lines: 24 In kernel/time/jiffies.c, clocksource_jiffies should be static. Signed-off-by: H Hartley Sweeten --- diff --git a/kernel/time/jiffies.c b/kernel/time/jiffies.c index 5404a84..36d2d83 100644 --- a/kernel/time/jiffies.c +++ b/kernel/time/jiffies.c @@ -55,7 +55,7 @@ static cycle_t jiffies_read(struct clocksource *cs) return (cycle_t) jiffies; } -struct clocksource clocksource_jiffies = { +static struct clocksource clocksource_jiffies = { .name = "jiffies", .rating = 1, /* lowest valid rating*/ .read = jiffies_read, -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/