Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751764AbZJPWS7 (ORCPT ); Fri, 16 Oct 2009 18:18:59 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751294AbZJPWS7 (ORCPT ); Fri, 16 Oct 2009 18:18:59 -0400 Received: from exprod6og105.obsmtp.com ([64.18.1.189]:57219 "HELO exprod6og105.obsmtp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1751145AbZJPWS6 convert rfc822-to-8bit (ORCPT ); Fri, 16 Oct 2009 18:18:58 -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] clockevents.c: fix symbol was not declared noise Date: Fri, 16 Oct 2009 18:19:01 -0400 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: [PATCH] clockevents.c: fix symbol was not declared noise Thread-Index: AcpOrqm8FoAi08H5S9mlVmJFAy6sKg== From: "H Hartley Sweeten" To: X-OriginalArrivalTime: 16 Oct 2009 22:19:02.0554 (UTC) FILETIME=[AA8417A0:01CA4EAE] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 934 Lines: 28 Include "tick-internal.h" in order to pick up the extern function prototype for clockevents_shutdown(). This quiets the following spares build noise: warning: symbol 'clockevents_shutdown' was not declared. Should it be static? Signed-off-by: H Hartley Sweeten --- diff --git a/kernel/time/clockevents.c b/kernel/time/clockevents.c index 620b58a..c30ba1f 100644 --- a/kernel/time/clockevents.c +++ b/kernel/time/clockevents.c @@ -20,6 +20,8 @@ #include #include +#include "tick-internal.h" + /* The registered clock event devices */ static LIST_HEAD(clockevent_devices); static LIST_HEAD(clockevents_released); -- 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/