diff options
| author | Anton Blanchard <anton@samba.org> | 2002-04-26 11:25:33 +1000 |
|---|---|---|
| committer | Anton Blanchard <anton@samba.org> | 2002-04-26 11:25:33 +1000 |
| commit | 9b5b87a3aed542739a0d2184e645abbf215bcdce (patch) | |
| tree | 15a0cc3331e3ff2efa515479e1aeabbe47220c59 | |
| parent | cc7b61275b1e46314bd527267b5810f655abde4e (diff) | |
ppc64: error in set_dec introduced by me, fixed by Milton Miller
| -rw-r--r-- | include/asm-ppc64/time.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/asm-ppc64/time.h b/include/asm-ppc64/time.h index 92047f922924..bc399ddf2686 100644 --- a/include/asm-ppc64/time.h +++ b/include/asm-ppc64/time.h @@ -83,9 +83,8 @@ static __inline__ void set_dec(int val) if (cur_dec > val) HvCall_setVirtualDecr(); } else -#else - mtspr(SPRN_DEC, val); #endif + mtspr(SPRN_DEC, val); } extern __inline__ unsigned long tb_ticks_since(unsigned long tstamp) { |
