time.c (a61944c251c3e68c4bbf6eb96ff61c7b286351c5) | time.c (334955ef964bee9d3b1e20966847eee28cfd05f6) |
---|---|
1#include <linux/types.h> | 1#include <linux/types.h> |
2#include <linux/i8253.h> |
|
2#include <linux/interrupt.h> 3#include <linux/irq.h> 4#include <linux/smp.h> 5#include <linux/time.h> 6#include <linux/clockchips.h> 7 | 3#include <linux/interrupt.h> 4#include <linux/irq.h> 5#include <linux/smp.h> 6#include <linux/time.h> 7#include <linux/clockchips.h> 8 |
8#include <asm/i8253.h> | |
9#include <asm/sni.h> 10#include <asm/time.h> 11#include <asm-generic/rtc.h> 12 13#define SNI_CLOCK_TICK_RATE 3686400 14#define SNI_COUNTER2_DIV 64 15#define SNI_COUNTER0_DIV ((SNI_CLOCK_TICK_RATE / SNI_COUNTER2_DIV) / HZ) 16 --- 174 unchanged lines hidden --- | 9#include <asm/sni.h> 10#include <asm/time.h> 11#include <asm-generic/rtc.h> 12 13#define SNI_CLOCK_TICK_RATE 3686400 14#define SNI_COUNTER2_DIV 64 15#define SNI_COUNTER0_DIV ((SNI_CLOCK_TICK_RATE / SNI_COUNTER2_DIV) / HZ) 16 --- 174 unchanged lines hidden --- |