From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754721AbcA0LnG (ORCPT ); Wed, 27 Jan 2016 06:43:06 -0500 Received: from terminus.zytor.com ([198.137.202.10]:34284 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754689AbcA0Lmy (ORCPT ); Wed, 27 Jan 2016 06:42:54 -0500 Date: Wed, 27 Jan 2016 03:42:37 -0800 From: tip-bot for Alexander Kuleshov Message-ID: Cc: kuleshovmail@gmail.com, mingo@kernel.org, tglx@linutronix.de, linux-kernel@vger.kernel.org, hpa@zytor.com Reply-To: linux-kernel@vger.kernel.org, tglx@linutronix.de, hpa@zytor.com, kuleshovmail@gmail.com, mingo@kernel.org In-Reply-To: <1444987253-11018-1-git-send-email-kuleshovmail@gmail.com> References: <1444987253-11018-1-git-send-email-kuleshovmail@gmail.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:timers/core] clockevents: Rename last parameter of clocks_calc_mult_shift() to maxsec Git-Commit-ID: dd42ac8f02aea32661756554aace2095f7181d34 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: dd42ac8f02aea32661756554aace2095f7181d34 Gitweb: http://git.kernel.org/tip/dd42ac8f02aea32661756554aace2095f7181d34 Author: Alexander Kuleshov AuthorDate: Fri, 16 Oct 2015 15:20:53 +0600 Committer: Thomas Gleixner CommitDate: Wed, 27 Jan 2016 12:38:03 +0100 clockevents: Rename last parameter of clocks_calc_mult_shift() to maxsec Last parameter of the clocks_calc_mult_shift() was renamed from minsec to maxsec in the 5fdade95 (time: Rename misnamed minsec argument of clocks_calc_mult_shift()). Signed-off-by: Alexander Kuleshov Link: http://lkml.kernel.org/r/1444987253-11018-1-git-send-email-kuleshovmail@gmail.com Signed-off-by: Thomas Gleixner --- include/linux/clockchips.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/linux/clockchips.h b/include/linux/clockchips.h index bdcf358..0d442e3 100644 --- a/include/linux/clockchips.h +++ b/include/linux/clockchips.h @@ -190,9 +190,9 @@ extern void clockevents_config_and_register(struct clock_event_device *dev, extern int clockevents_update_freq(struct clock_event_device *ce, u32 freq); static inline void -clockevents_calc_mult_shift(struct clock_event_device *ce, u32 freq, u32 minsec) +clockevents_calc_mult_shift(struct clock_event_device *ce, u32 freq, u32 maxsec) { - return clocks_calc_mult_shift(&ce->mult, &ce->shift, NSEC_PER_SEC, freq, minsec); + return clocks_calc_mult_shift(&ce->mult, &ce->shift, NSEC_PER_SEC, freq, maxsec); } extern void clockevents_suspend(void);