summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/fbsd-device.c4
1 files 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__)