linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] clock: Remove unneeded return from void function
@ 2015-09-23 10:13 Guillaume Gomez
  2015-09-23 11:30 ` Thomas Gleixner
  0 siblings, 1 reply; 2+ messages in thread
From: Guillaume Gomez @ 2015-09-23 10:13 UTC (permalink / raw)
  To: tglx, linux-kernel

Signed-off-by: Guillaume Gomez <guillaume1.gomez@gmail.com>
---
 include/linux/clockchips.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/clockchips.h b/include/linux/clockchips.h
index bdcf358..4dd0437 100644
--- a/include/linux/clockchips.h
+++ b/include/linux/clockchips.h
@@ -192,7 +192,7 @@ 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)
 {
-    return clocks_calc_mult_shift(&ce->mult, &ce->shift,
NSEC_PER_SEC, freq, minsec);
+    clocks_calc_mult_shift(&ce->mult, &ce->shift, NSEC_PER_SEC, freq, minsec);
 }

 extern void clockevents_suspend(void);
-- 
2.1.4

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] clock: Remove unneeded return from void function
  2015-09-23 10:13 [PATCH] clock: Remove unneeded return from void function Guillaume Gomez
@ 2015-09-23 11:30 ` Thomas Gleixner
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Gleixner @ 2015-09-23 11:30 UTC (permalink / raw)
  To: Guillaume Gomez; +Cc: linux-kernel

On Wed, 23 Sep 2015, Guillaume Gomez wrote:

Your subject line is not really matching the subsystem.

  git log --oneline include/linux/clockchips.h

should give you a hint.

Thanks,

	tglx


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-09-23 11:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-23 10:13 [PATCH] clock: Remove unneeded return from void function Guillaume Gomez
2015-09-23 11:30 ` Thomas Gleixner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).