Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5d5a2989 authored by Thomas Gleixner's avatar Thomas Gleixner Committed by Thomas Gleixner
Browse files

x86: kill 8253pit.h



Useless header file with 32 bit and 64 bit variants. Move the
single useful line to the place where it is used.

Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
Signed-off-by: default avatarArjan van de Ven <arjan@linux.intel.com>
parent fb79d22e
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -10,7 +10,6 @@
#include <linux/sysdev.h>
#include <linux/bitops.h>

#include <asm/8253pit.h>
#include <asm/atomic.h>
#include <asm/system.h>
#include <asm/io.h>
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,6 @@
#include <linux/init.h>
#include <linux/input.h>
#include <linux/platform_device.h>
#include <asm/8253pit.h>
#include <asm/io.h>

MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
@@ -28,6 +27,7 @@ MODULE_LICENSE("GPL");
/* Use the global PIT lock ! */
#include <asm/i8253.h>
#else
#include <asm/8253pit.h>
static DEFINE_SPINLOCK(i8253_lock);
#endif

include/asm-x86/8253pit.h

deleted100644 → 0
+0 −5
Original line number Diff line number Diff line
#ifdef CONFIG_X86_32
# include "8253pit_32.h"
#else
# include "8253pit_64.h"
#endif

include/asm-x86/8253pit_32.h

deleted100644 → 0
+0 −12
Original line number Diff line number Diff line
/*
 * 8253/8254 Programmable Interval Timer
 */

#ifndef _8253PIT_H
#define _8253PIT_H

#include <asm/timex.h>

#define PIT_TICK_RATE 	CLOCK_TICK_RATE

#endif

include/asm-x86/8253pit_64.h

deleted100644 → 0
+0 −10
Original line number Diff line number Diff line
/*
 * 8253/8254 Programmable Interval Timer
 */

#ifndef _8253PIT_H
#define _8253PIT_H

#define PIT_TICK_RATE 	1193182UL

#endif
Loading