1/*
2 * Copyright 2006, Marcus Overhagen. All rights reserved.
3 *
4 * Distributed under the terms of the MIT License.
5 */
6#ifndef __PCI_X86_IRQ_H
7#define __PCI_X86_IRQ_H
8
9#include <SupportDefs.h>
10
11status_t pci_x86_irq_init(void);
12
13status_t pci_x86_irq_read(void *cookie,
14						  uint8 bus, uint8 device, uint8 function,
15						  uint8 pin, uint8 *irq);
16
17status_t pci_x86_irq_write(void *cookie,
18						   uint8 bus, uint8 device, uint8 function,
19						   uint8 pin, uint8 irq);
20
21
22#endif
23