mirror of
https://review.haiku-os.org/haiku
synced 2025-01-29 17:54:54 +01:00
dc14d97b7f
functional change intended. * Use an appropriately sized sLevelTriggeredInterrupts for each controller type. This also fixes an out of bound access for IO-APICs with more than 32 entries and also returns the right mode in such cases. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41426 a95241bf-73f2-0310-859d-f6bbb57e9c96
12 lines
240 B
C
12 lines
240 B
C
/*
|
|
* Copyright 2011, Michael Lotz, mmlr@mlotz.ch.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _KERNEL_ARCH_x86_PIC_H
|
|
#define _KERNEL_ARCH_x86_PIC_H
|
|
|
|
void pic_init();
|
|
void pic_disable();
|
|
|
|
#endif // _KERNEL_ARCH_x86_PIC_H
|