mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-04 11:16:48 +07:00
e66a022a80
FREQ is a ridiculously short name for a platform-specific macro in a generic header, and it now conflicts with an enumeration in the gspca/ov519 driver. Also delete conditional reference to ixp4xx_get_board_tick_rate() which is not defined anywhere. Signed-off-by: Ben Hutchings <ben@decadent.org.uk> Signed-off-by: Krzysztof Hałasa <khc@pm.waw.pl>
17 lines
429 B
C
17 lines
429 B
C
/*
|
|
* arch/arm/mach-ixp4xx/include/mach/timex.h
|
|
*
|
|
*/
|
|
|
|
#include <mach/hardware.h>
|
|
|
|
/*
|
|
* We use IXP425 General purpose timer for our timer needs, it runs at
|
|
* 66.66... MHz. We do a convulted calculation of CLOCK_TICK_RATE b/c the
|
|
* timer register ignores the bottom 2 bits of the LATCH value.
|
|
*/
|
|
#define IXP4XX_TIMER_FREQ 66666000
|
|
#define CLOCK_TICK_RATE \
|
|
(((IXP4XX_TIMER_FREQ / HZ & ~IXP4XX_OST_RELOAD_MASK) + 1) * HZ)
|
|
|