diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-06-08 15:51:21 -0700 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-06-08 15:51:21 -0700 | 
| commit | 81db4dbf592b486ac2bc7cabfb328ee2a6c4725d (patch) | |
| tree | bb42fbbee400f55b13f49f30b392367798602652 /kernel/time/ntp.c | |
| parent | c3e58a7945c8f1e4ec09ef93832a3839c5a70be2 (diff) | |
| parent | 67dd331c5d811b2e50c935a24c82f31b61c6dcd3 (diff) | |
| download | olio-linux-3.10-81db4dbf592b486ac2bc7cabfb328ee2a6c4725d.tar.xz olio-linux-3.10-81db4dbf592b486ac2bc7cabfb328ee2a6c4725d.zip  | |
Merge branch 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull timer fixes from Thomas Gleixner:
 - Trivial: unused variable removal
 - Posix-timers: Add the clock ID to the new proc interface to make it
   useful.  The interface is new and should be functional when we reach
   the final 3.10 release.
 - Cure a false positive warning in the tick code introduced by the
   overhaul in 3.10
 - Fix for a persistent clock detection regression introduced in this
   cycle
* 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
  timekeeping: Correct run-time detection of persistent_clock.
  ntp: Remove unused variable flags in __hardpps
  posix-timers: Show clock ID in proc file
  tick: Cure broadcast false positive pending bit warning
Diffstat (limited to 'kernel/time/ntp.c')
| -rw-r--r-- | kernel/time/ntp.c | 1 | 
1 files changed, 0 insertions, 1 deletions
diff --git a/kernel/time/ntp.c b/kernel/time/ntp.c index 12ff13a838c..8f5b3b98577 100644 --- a/kernel/time/ntp.c +++ b/kernel/time/ntp.c @@ -874,7 +874,6 @@ static void hardpps_update_phase(long error)  void __hardpps(const struct timespec *phase_ts, const struct timespec *raw_ts)  {  	struct pps_normtime pts_norm, freq_norm; -	unsigned long flags;  	pts_norm = pps_normalize_ts(*phase_ts);  |