| Line | |
|---|
| 1 | /****************************************************************************** |
|---|
| 2 | * xc_physdev.c |
|---|
| 3 | * |
|---|
| 4 | * API for manipulating physical-device access permissions. |
|---|
| 5 | * |
|---|
| 6 | * Copyright (c) 2004, Rolf Neugebauer (Intel Research Cambridge) |
|---|
| 7 | * Copyright (c) 2004, K A Fraser (University of Cambridge) |
|---|
| 8 | */ |
|---|
| 9 | |
|---|
| 10 | #include "xc_private.h" |
|---|
| 11 | |
|---|
| 12 | int xc_physdev_pci_access_modify(int xc_handle, |
|---|
| 13 | uint32_t domid, |
|---|
| 14 | int bus, |
|---|
| 15 | int dev, |
|---|
| 16 | int func, |
|---|
| 17 | int enable) |
|---|
| 18 | { |
|---|
| 19 | errno = ENOSYS; |
|---|
| 20 | return -1; |
|---|
| 21 | } |
|---|
Note: See
TracBrowser
for help on using the repository browser.