i8253.c (a61944c251c3e68c4bbf6eb96ff61c7b286351c5) i8253.c (334955ef964bee9d3b1e20966847eee28cfd05f6)
1/*
2 * 8253/PIT functions
3 *
4 */
5#include <linux/clockchips.h>
6#include <linux/interrupt.h>
7#include <linux/spinlock.h>
8#include <linux/jiffies.h>
9#include <linux/module.h>
10#include <linux/timex.h>
11#include <linux/delay.h>
1/*
2 * 8253/PIT functions
3 *
4 */
5#include <linux/clockchips.h>
6#include <linux/interrupt.h>
7#include <linux/spinlock.h>
8#include <linux/jiffies.h>
9#include <linux/module.h>
10#include <linux/timex.h>
11#include <linux/delay.h>
12#include <linux/i8253.h>
12#include <linux/init.h>
13#include <linux/io.h>
14
13#include <linux/init.h>
14#include <linux/io.h>
15
15#include <asm/i8253.h>
16#include <asm/hpet.h>
17#include <asm/smp.h>
18
19DEFINE_RAW_SPINLOCK(i8253_lock);
20EXPORT_SYMBOL(i8253_lock);
21
22/*
23 * HPET replaces the PIT, when enabled. So we need to know, which of

--- 109 unchanged lines hidden ---
16#include <asm/hpet.h>
17#include <asm/smp.h>
18
19DEFINE_RAW_SPINLOCK(i8253_lock);
20EXPORT_SYMBOL(i8253_lock);
21
22/*
23 * HPET replaces the PIT, when enabled. So we need to know, which of

--- 109 unchanged lines hidden ---