Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 79691
b: refs/heads/master
c: 1d76c26
h: refs/heads/master
i:
  79689: 2249771
  79687: b6ef689
v: v3
  • Loading branch information
Atsushi Nemoto authored and Ingo Molnar committed Jan 30, 2008
1 parent 774de6e commit 460a2f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 186e3cb8a465bac010ee3b020768d2fa2b505aef
refs/heads/master: 1d76c2622813fbc692b0d323028cfef9ee36051a
2 changes: 1 addition & 1 deletion trunk/include/linux/clocksource.h
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ struct clocksource {
#define CLOCK_SOURCE_VALID_FOR_HRES 0x20

/* simplify initialization of mask field */
#define CLOCKSOURCE_MASK(bits) (cycle_t)(bits<64 ? ((1ULL<<bits)-1) : -1)
#define CLOCKSOURCE_MASK(bits) (cycle_t)((bits) < 64 ? ((1ULL<<(bits))-1) : -1)

/**
* clocksource_khz2mult - calculates mult from khz and shift
Expand Down

0 comments on commit 460a2f8

Please sign in to comment.