]> mj.ucw.cz Git - pciutils.git/commitdiff
NetBSD: Make extended configuration space available
authorMartin Mares <mj@ucw.cz>
Sat, 14 May 2016 09:31:59 +0000 (11:31 +0200)
committerMartin Mares <mj@ucw.cz>
Sat, 14 May 2016 09:31:59 +0000 (11:31 +0200)
Patch by Masanobu SAITOH <msaitoh@execsw.org>.

lib/nbsd-libpci.c

index 20d76169a6407036f2dd15f49e487852c60a839e..f57d133d932b3c360fb3f4684e56e9b3a37ef7b5 100644 (file)
@@ -71,7 +71,7 @@ nbsd_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;
 
   shift = 8*(pos % 4);