diff options
Diffstat (limited to 'pcilib/pci.c')
-rw-r--r-- | pcilib/pci.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/pcilib/pci.c b/pcilib/pci.c index 26dfdbf..eaf41ac 100644 --- a/pcilib/pci.c +++ b/pcilib/pci.c @@ -483,3 +483,10 @@ int pcilib_set_dma_mask(pcilib_t *ctx, int mask) { return 0; } + +int pcilib_set_mps(pcilib_t *ctx, int mps) { + if (ioctl(ctx->handle, PCIDRIVER_IOC_MPS, mps) < 0) + return PCILIB_ERROR_FAILED; + + return 0; +} |