projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a0de1f0
)
[PATCH] x86: use proper defines for i8259A I/O
author
Andreas Mohr
<andi@rhlx01.fht-esslingen.de>
Fri, 23 Jun 2006 09:04:28 +0000
(
02:04
-0700)
committer
Linus Torvalds
<torvalds@g5.osdl.org>
Fri, 23 Jun 2006 14:42:58 +0000
(07:42 -0700)
Use proper defines instead of open-coded values.
Signed-off-by: Andreas Mohr <andi@lisas.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
arch/i386/kernel/i8259.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/i386/kernel/i8259.c
b/arch/i386/kernel/i8259.c
index 323ef8ab3244e880c1b32468a12122990ba0ceba..b7636b96e104b7afec580e5ec8cb31d31c8a17d0 100644
(file)
--- a/
arch/i386/kernel/i8259.c
+++ b/
arch/i386/kernel/i8259.c
@@
-271,8
+271,8
@@
static int i8259A_shutdown(struct sys_device *dev)
* the kernel initialization code can get it
* out of.
*/
- outb(0xff,
0x21);
/* mask all of 8259A-1 */
- outb(0xff,
0xA1);
/* mask all of 8259A-1 */
+ outb(0xff,
PIC_MASTER_IMR);
/* mask all of 8259A-1 */
+ outb(0xff,
PIC_SLAVE_IMR);
/* mask all of 8259A-1 */
return 0;
}