diff mbox

[2/2] fbsd-device: Make extended configuration space available.

Message ID CAE5pWr=GBe431riNtp1XRbHLsNS9kXyHnXUGC8Lh0QZLbZ_xfg@mail.gmail.com
State Not Applicable
Headers show

Commit Message

Imre Vadász July 14, 2017, 9:13 p.m. UTC
Signed-off-by: Imre Vadász <imrevdsz@gmail.com>
---
 lib/fbsd-device.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

--
2.12.1
diff mbox

Patch

diff --git a/lib/fbsd-device.c b/lib/fbsd-device.c
index 398fe68..7cebb0d 100644
--- a/lib/fbsd-device.c
+++ b/lib/fbsd-device.c
@@ -74,7 +74,7 @@  fbsd_read(struct pci_dev *d, int pos, byte *buf, int len)
   if (!(len == 1 || len == 2 || len == 4))
     return pci_generic_block_read(d, pos, buf, len);

-  if (pos >= 256)
+  if (pos >= 4096)
     return 0;

 #if __FreeBSD_version >= 700053 || defined(__DragonFly__)
@@ -117,7 +117,7 @@  fbsd_write(struct pci_dev *d, int pos, byte *buf, int len)
   if (!(len == 1 || len == 2 || len == 4))
     return pci_generic_block_write(d, pos, buf, len);

-  if (pos >= 256)
+  if (pos >= 4096)
     return 0;

 #if __FreeBSD_version >= 700053 || defined(__DragonFly__)