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
14 lines
306 B
C
14 lines
306 B
C
/*
|
|
* Copyright 2011, Michael Lotz, mmlr@mlotz.ch.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _KERNEL_ARCH_x86_IOAPIC_H
|
|
#define _KERNEL_ARCH_x86_IOAPIC_H
|
|
|
|
struct kernel_args;
|
|
|
|
void ioapic_map(kernel_args* args);
|
|
void ioapic_init(kernel_args* args);
|
|
|
|
#endif // _KERNEL_ARCH_x86_IOAPIC_H
|