From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751968AbbJKUOt (ORCPT ); Sun, 11 Oct 2015 16:14:49 -0400 Received: from www.linutronix.de ([62.245.132.108]:42102 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751409AbbJKUOs (ORCPT ); Sun, 11 Oct 2015 16:14:48 -0400 Date: Sun, 11 Oct 2015 22:14:10 +0200 (CEST) From: Thomas Gleixner To: Guillaume Gomez cc: John Stultz , linux-kernel@vger.kernel.org Subject: Re: [PATCH] clock: Remove unneeded return statement from void In-Reply-To: Message-ID: References: User-Agent: Alpine 2.11 (DEB 23 2013-08-11) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII 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 On Wed, 23 Sep 2015, Guillaume Gomez wrote: FYI, the proper subsystem is clocksource not clock > Signed-off-by: Guillaume Gomez > --- > kernel/time/clocksource.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/kernel/time/clocksource.c b/kernel/time/clocksource.c > index 841b72f..5e83c38 100644 > --- a/kernel/time/clocksource.c > +++ b/kernel/time/clocksource.c > @@ -595,12 +595,12 @@ static void __clocksource_select(bool skipcur) > */ > static void clocksource_select(void) > { > - return __clocksource_select(false); > + __clocksource_select(false); This does not apply because it's white space mangled. Please fix your mail client. See Documentation/email-clients.txt I fixed up everything this time and applied it, but please be more careful next time. Thanks, tglx