From 7663958f7515a26d08ec6a5b22ce0de931d2c570 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Imre=20Vad=C3=A1sz?= Date: Fri, 14 Jul 2017 23:13:35 +0200 Subject: fbsd-device: Make extended configuration space available. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Imre Vadász --- lib/fbsd-device.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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__) -- cgit v1.2.1