-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 62883 b: refs/heads/master c: 5c4f526 h: refs/heads/master i: 62881: 2914c99 62879: 9f8b589 v: v3
- Loading branch information
Greg Ungerer
authored and
Linus Torvalds
committed
Jul 25, 2007
1 parent
130e73c
commit a3ffd8c
Showing
2 changed files
with
24 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 36995223872df6642e604aab2be84377a5d12a19 | ||
refs/heads/master: 5c4f5264d503f0650c954a181b0ba255913bb382 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,23 @@ | ||
#include <asm-m68k/timex.h> | ||
/* | ||
* linux/include/asm-m68knommu/timex.h | ||
* | ||
* m68knommu architecture timex specifications | ||
*/ | ||
#ifndef _ASM_M68KNOMMU_TIMEX_H | ||
#define _ASM_M68KNOMMU_TIMEX_H | ||
|
||
#ifdef CONFIG_COLDFIRE | ||
#include <asm/coldfire.h> | ||
#define CLOCK_TICK_RATE MCF_CLK | ||
#else | ||
#define CLOCK_TICK_RATE 1193180 /* Underlying HZ */ | ||
#endif | ||
|
||
typedef unsigned long cycles_t; | ||
|
||
static inline cycles_t get_cycles(void) | ||
{ | ||
return 0; | ||
} | ||
|
||
#endif |