summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAnton Blanchard <anton@samba.org>2002-04-26 11:25:33 +1000
committerAnton Blanchard <anton@samba.org>2002-04-26 11:25:33 +1000
commit9b5b87a3aed542739a0d2184e645abbf215bcdce (patch)
tree15a0cc3331e3ff2efa515479e1aeabbe47220c59 /include
parentcc7b61275b1e46314bd527267b5810f655abde4e (diff)
ppc64: error in set_dec introduced by me, fixed by Milton Miller
Diffstat (limited to 'include')
-rw-r--r--include/asm-ppc64/time.h3
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) {