OSDN Git Service

Interrupt setup fix
authorYoshinori Sato <ysato@users.sourceforge.jp>
Mon, 5 Jan 2015 16:55:09 +0000 (01:55 +0900)
committerYoshinori Sato <ysato@users.sourceforge.jp>
Mon, 5 Jan 2015 16:55:09 +0000 (01:55 +0900)
arch/h8300/kernel/cpu/h83069/setup.c

index 8505d38..19d06c0 100644 (file)
@@ -256,4 +256,7 @@ void __init early_device_register(void)
 {
        early_platform_add_devices(early_devices,
                                   ARRAY_SIZE(devices));
+       /* All interrupt priority high */
+       ctrl_outb(0xff, 0xfee018);
+       ctrl_outb(0xff, 0xfee019);
 }