Commit 8902f99e authored by Dave Jones's avatar Dave Jones

[PATCH] AMD Elan uses slightly different clock freq

parent cf937c60
......@@ -9,7 +9,12 @@
#include <linux/config.h>
#include <asm/msr.h>
#define CLOCK_TICK_RATE 1193180 /* Underlying HZ */
#ifdef CONFIG_MELAN
# define CLOCK_TICK_RATE 1189200 /* AMD Elan has different frequency! */
#else
# define CLOCK_TICK_RATE 1193180 /* Underlying HZ */
#endif
#define CLOCK_TICK_FACTOR 20 /* Factor of both 1000000 and CLOCK_TICK_RATE */
#define FINETUNE ((((((long)LATCH * HZ - CLOCK_TICK_RATE) << SHIFT_HZ) * \
(1000000/CLOCK_TICK_FACTOR) / (CLOCK_TICK_RATE/CLOCK_TICK_FACTOR)) \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment