vfs: check userland buffers before reading them.
[haiku.git] / src / add-ons / kernel / bus_managers / pci / arch / arm / pci_io.c
blobf0b9a700d5a12a5b33b1285bc9d42082a77079cc
1 /*
2 * Copyright 2009, Haiku Inc.
3 * Distributed under the terms of the MIT License.
4 */
7 #include "pci_io.h"
8 #include "pci_private.h"
9 #warning ARM:WRITEME
12 status_t
13 pci_io_init()
15 return B_OK;
19 uint8
20 pci_read_io_8(int mapped_io_addr)
22 /* NOT IMPLEMENTED */
23 return 0;
27 void
28 pci_write_io_8(int mapped_io_addr, uint8 value)
30 /* NOT IMPLEMENTED */
34 uint16
35 pci_read_io_16(int mapped_io_addr)
37 /* NOT IMPLEMENTED */
38 return 0;
42 void
43 pci_write_io_16(int mapped_io_addr, uint16 value)
45 /* NOT IMPLEMENTED */
49 uint32
50 pci_read_io_32(int mapped_io_addr)
52 /* NOT IMPLEMENTED */
53 return 0;
57 void
58 pci_write_io_32(int mapped_io_addr, uint32 value)
60 /* NOT IMPLEMENTED */