]> mj.ucw.cz Git - pciutils.git/blobdiff - lib/dump.c
Preliminary support for PCI domains
[pciutils.git] / lib / dump.c
index 5aa83230a1ba7e1fafd2074f2fc47f9820fe7dc7..d3b154f0f79d455051bce634eb14302c27b04d7d 100644 (file)
@@ -1,9 +1,7 @@
 /*
- *     $Id: dump.c,v 1.1 1999/01/22 21:05:20 mj Exp $
- *
  *     The PCI Library -- Reading of Bus Dumps
  *
- *     Copyright (c) 1997--1999 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
+ *     Copyright (c) 1997--2003 Martin Mares <mj@ucw.cz>
  *
  *     Can be freely distributed and used under the terms of the GNU GPL.
  */
@@ -46,7 +44,7 @@ dump_init(struct pci_access *a)
       if (len >= 8 && buf[2] == ':' && buf[5] == '.' && buf[7] == ' ' &&
          sscanf(buf, "%x:%x.%d ", &bn, &dn, &fn) == 3)
        {
-         dev = pci_get_dev(a, bn, dn, fn);
+         dev = pci_get_dev(a, 0, bn, dn, fn);
          dev->aux = pci_malloc(a, 256);
          memset(dev->aux, 0xff, 256);
          pci_link_dev(a, dev);
@@ -70,12 +68,12 @@ dump_init(struct pci_access *a)
 }
 
 static void
-dump_cleanup(struct pci_access * UNUSED a)
+dump_cleanup(struct pci_access *a UNUSED)
 {
 }
 
 static void
-dump_scan(struct pci_access * UNUSED a)
+dump_scan(struct pci_access *a UNUSED)
 {
 }
 
@@ -97,7 +95,7 @@ dump_read(struct pci_dev *d, int pos, byte *buf, int len)
 }
 
 static int
-dump_write(struct pci_dev * UNUSED d, int UNUSED pos, byte * UNUSED buf, int UNUSED len)
+dump_write(struct pci_dev *d UNUSED, int pos UNUSED, byte *buf UNUSED, int len UNUSED)
 {
   d->access->error("Writing to dump files is not supported.");
   return 0;