From: Andreas Mohr Use proper defines instead of open-coded values. Signed-off-by: Andreas Mohr Signed-off-by: Andrew Morton --- arch/i386/kernel/i8259.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN arch/i386/kernel/i8259.c~x86-use-proper-defines-for-i8259a-i-o arch/i386/kernel/i8259.c --- 25/arch/i386/kernel/i8259.c~x86-use-proper-defines-for-i8259a-i-o Wed May 24 13:38:46 2006 +++ 25-akpm/arch/i386/kernel/i8259.c Wed May 24 13:38:46 2006 @@ -271,8 +271,8 @@ static int i8259A_shutdown(struct sys_de * 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; } _