diff options
| author | Stephen Warren <swarren@wwwdotorg.org> | 2013-01-14 21:44:27 -0700 | 
|---|---|---|
| committer | Stephen Warren <swarren@wwwdotorg.org> | 2013-01-14 21:44:27 -0700 | 
| commit | b2fc382aad0a8f52803acdc3ac4e5540dbcdf1f6 (patch) | |
| tree | ed79658afd978b1e52ace0fb58d1628b79c0f78b /arch/arm/mach-h720x/common.c | |
| parent | 9931faca02c604c22335f5a935a501bb2ace6e20 (diff) | |
| parent | 90cf214d6a549bf482e3c5751ee256cc885b96ea (diff) | |
| download | olio-linux-3.10-b2fc382aad0a8f52803acdc3ac4e5540dbcdf1f6.tar.xz olio-linux-3.10-b2fc382aad0a8f52803acdc3ac4e5540dbcdf1f6.zip  | |
Merge remote-tracking branch 'korg_arm-soc/timer/cleanup' into cleanup
Diffstat (limited to 'arch/arm/mach-h720x/common.c')
| -rw-r--r-- | arch/arm/mach-h720x/common.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-h720x/common.c b/arch/arm/mach-h720x/common.c index aa1331e86bc..17ef91fa3d5 100644 --- a/arch/arm/mach-h720x/common.c +++ b/arch/arm/mach-h720x/common.c @@ -42,12 +42,12 @@ void __init arch_dma_init(dma_t *dma)  }  /* - * Return usecs since last timer reload + * Return nsecs since last timer reload   * (timercount * (usecs perjiffie)) / (ticks per jiffie)   */ -unsigned long h720x_gettimeoffset(void) +u32 h720x_gettimeoffset(void)  { -	return (CPU_REG (TIMER_VIRT, TM0_COUNT) * tick_usec) / LATCH; +	return ((CPU_REG(TIMER_VIRT, TM0_COUNT) * tick_usec) / LATCH) * 1000;  }  /*  |