forked from Minki/linux
ced918eb74
i8253_lock needs to be a real spinlock in preempt-rt, i.e. it can not be converted to a sleeping lock. Convert it to raw_spinlock and fix up all users. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Acked-by: Ralf Baechle <ralf@linux-mips.org> Acked-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> Acked-by: Takashi Iwai <tiwai@suse.de> Cc: Jens Axboe <jens.axboe@oracle.com> LKML-Reference: <20100217163751.030764372@linutronix.de>
20 lines
386 B
C
20 lines
386 B
C
/*
|
|
* Machine specific IO port address definition for generic.
|
|
* Written by Osamu Tomita <tomita@cinet.co.jp>
|
|
*/
|
|
#ifndef __ASM_I8253_H
|
|
#define __ASM_I8253_H
|
|
|
|
#include <linux/spinlock.h>
|
|
|
|
/* i8253A PIT registers */
|
|
#define PIT_MODE 0x43
|
|
#define PIT_CH0 0x40
|
|
#define PIT_CH2 0x42
|
|
|
|
extern raw_spinlock_t i8253_lock;
|
|
|
|
extern void setup_pit_timer(void);
|
|
|
|
#endif /* __ASM_I8253_H */
|