From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752917AbaGPVEj (ORCPT ); Wed, 16 Jul 2014 17:04:39 -0400 Received: from www.linutronix.de ([62.245.132.108]:59725 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752830AbaGPVEc (ORCPT ); Wed, 16 Jul 2014 17:04:32 -0400 Message-Id: <20140716205054.629288175@linutronix.de> User-Agent: quilt/0.63-1 Date: Wed, 16 Jul 2014 21:04:31 -0000 From: Thomas Gleixner To: LKML Cc: John Stultz , Peter Zijlstra Subject: [patch V2 29/64] time: Export nsecs_to_jiffies() References: <20140716205018.175419210@linutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Disposition: inline; filename=time-export-nsecs-to-jiffies.patch X-Linutronix-Spam-Score: -1.0 X-Linutronix-Spam-Level: - X-Linutronix-Spam-Status: No , -1.0 points, 5.0 required, ALL_TRUSTED=-1,SHORTCIRCUIT=-0.0001 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Required for moving drivers to the nanosecond based interfaces. Signed-off-by: Thomas Gleixner --- kernel/time/time.c | 1 + 1 file changed, 1 insertion(+) Index: tip/kernel/time/time.c =================================================================== --- tip.orig/kernel/time/time.c +++ tip/kernel/time/time.c @@ -757,6 +757,7 @@ unsigned long nsecs_to_jiffies(u64 n) { return (unsigned long)nsecs_to_jiffies64(n); } +EXPORT_SYMBOL_GPL(nsecs_to_jiffies); /* * Add two timespec values and do a safety check for overflow.