vfs: check userland buffers before reading them.
[haiku.git] / src / add-ons / kernel / bus_managers / pci / arch / x86 / pci_irq.cpp
blob8c2d8a7063ac2f6536e660b629642eb94e736fda
1 /*
2 * Copyright 2006, Marcus Overhagen. All rights reserved.
4 * Distributed under the terms of the MIT License.
5 */
6 #include "pci_irq.h"
9 status_t
10 pci_x86_irq_init(void)
12 return B_OK;
16 status_t
17 pci_x86_irq_read(void *cookie,
18 uint8 bus, uint8 device, uint8 function,
19 uint8 pin, uint8 *irq)
21 return B_ERROR;
25 status_t
26 pci_x86_irq_write(void *cookie,
27 uint8 bus, uint8 device, uint8 function,
28 uint8 pin, uint8 irq)
30 return B_ERROR;