summaryrefslogtreecommitdiff
path: root/picirq.c
diff options
context:
space:
mode:
Diffstat (limited to 'picirq.c')
-rw-r--r--picirq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/picirq.c b/picirq.c
index 9c3ea0c..9818090 100644
--- a/picirq.c
+++ b/picirq.c
@@ -12,7 +12,7 @@
// Current IRQ mask.
// Initial IRQ mask has interrupt 2 enabled (for slave 8259A).
-uint16_t irq_mask_8259A = 0xFFFF & ~(1<<IRQ_SLAVE);
+ushort irq_mask_8259A = 0xFFFF & ~(1<<IRQ_SLAVE);
/* Initialize the 8259A interrupt controllers. */
void
@@ -71,7 +71,7 @@ pic_init(void)
}
void
-irq_setmask_8259A(uint16_t mask)
+irq_setmask_8259A(ushort mask)
{
int i;
irq_mask_8259A = mask;