]> mj.ucw.cz Git - pciutils.git/commitdiff
Fixed UNUSED
authorMartin Mares <mj@ucw.cz>
Fri, 26 Dec 2003 20:04:29 +0000 (20:04 +0000)
committerMartin Mares <mj@ucw.cz>
Fri, 5 May 2006 12:18:08 +0000 (14:18 +0200)
Replaced obsolete syntax of __attribute__((unused)) in the middle of
parameter declarations (which is no longer supported by GCC 3.1) by the
current syntax (attribute at the end). Thanks to pixel@mandrakesoft.com
for reporting this problem.
git-archimport-id: mj@ucw.cz--public/pciutils--main--2.2--patch-4

ChangeLog
lib/access.c
lib/dump.c
lib/filter.c
lib/i386-ports.c
lib/internal.h
lib/proc.c

index 4dd336ef51cccc3c22486c85f70b0419a69db213..3d769e76510735f65e89d4766fd748d109156ddd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2003-12-26  Martin Mares  <mj@ucw.cz>
 
+       * Replaced obsolete syntax of __attribute__((unused)) in the middle of
+       parameter declarations (which is no longer supported by GCC 3.1) by the
+       current syntax (attribute at the end). Thanks to pixel@mandrakesoft.com
+       for reporting this problem.
+
        * Removed CVS $Id$ tags from all files.
 
        * Makefile: Added some more warnings.
index 598cc7eddeb59016c94620d3cff107e405ee2dd9..c0e04ef2960bf5f502a2dcad38b4c8da00ef0652 100644 (file)
@@ -1,7 +1,7 @@
 /*
  *     The PCI Library -- User Access
  *
- *     Copyright (c) 1997--1999 Martin Mares <mj@ucw.cz>
+ *     Copyright (c) 1997--2003 Martin Mares <mj@ucw.cz>
  *
  *     Can be freely distributed and used under the terms of the GNU GPL.
  */
@@ -114,7 +114,7 @@ pci_generic_debug(char *msg, ...)
 }
 
 static void
-pci_null_debug(char * UNUSED msg, ...)
+pci_null_debug(char *msg UNUSED, ...)
 {
 }
 
index 2155344cd2f9f24477d5194fec176de3c14b2ecb..90293e44e98bd9f0dfdd63586910584485c930de 100644 (file)
@@ -1,7 +1,7 @@
 /*
  *     The PCI Library -- Reading of Bus Dumps
  *
- *     Copyright (c) 1997--1999 Martin Mares <mj@ucw.cz>
+ *     Copyright (c) 1997--2003 Martin Mares <mj@ucw.cz>
  *
  *     Can be freely distributed and used under the terms of the GNU GPL.
  */
@@ -68,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)
 {
 }
 
@@ -95,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;
index 9d2d39f0934a25889d3f673e4dab8f0440c524fb..37e15cc5fe5115276543af1710aea80d576ba8f4 100644 (file)
@@ -1,7 +1,7 @@
 /*
  *     Linux PCI Library -- Device Filtering
  *
- *     Copyright (c) 1998--2002 Martin Mares <mj@ucw.cz>
+ *     Copyright (c) 1998--2003 Martin Mares <mj@ucw.cz>
  *
  *     Can be freely distributed and used under the terms of the GNU GPL.
  */
@@ -12,7 +12,7 @@
 #include "internal.h"
 
 void
-pci_filter_init(struct pci_access * UNUSED a, struct pci_filter *f)
+pci_filter_init(struct pci_access *a UNUSED, struct pci_filter *f)
 {
   f->bus = f->slot = f->func = -1;
   f->vendor = f->device = -1;
index 79bbdfb9edae551fd1564d48144300ac265f53da..b0d05c49fb12197bab8a0a9208ea087ee3e33ca9 100644 (file)
@@ -1,7 +1,7 @@
 /*
  *     The PCI Library -- Direct Configuration access via i386 Ports
  *
- *     Copyright (c) 1997--1999 Martin Mares <mj@ucw.cz>
+ *     Copyright (c) 1997--2003 Martin Mares <mj@ucw.cz>
  *
  *     Can be freely distributed and used under the terms of the GNU GPL.
  */
@@ -34,7 +34,7 @@ conf12_init(struct pci_access *a)
 }
 
 static void
-conf12_cleanup(struct pci_access * UNUSED a)
+conf12_cleanup(struct pci_access *a UNUSED)
 {
   iopl(3);
   intel_iopl_set = -1;
index f40ca9f673e34d1c1bc706cfd2cb2f15a301bc65..3c6187ef230bc83f871b95504ecd35da8280b329 100644 (file)
@@ -1,7 +1,7 @@
 /*
  *     The PCI Library -- Internal Include File
  *
- *     Copyright (c) 1997--2000 Martin Mares <mj@ucw.cz>
+ *     Copyright (c) 1997--2003 Martin Mares <mj@ucw.cz>
  *
  *     Can be freely distributed and used under the terms of the GNU GPL.
  */
index d18a0dbf655319311e856e0d46bb7cfb37e0e42e..3e09a2801eee6955806e1d6ca9dec8c8104b4ba0 100644 (file)
@@ -1,7 +1,7 @@
 /*
  *     The PCI Library -- Configuration Access via /proc/bus/pci
  *
- *     Copyright (c) 1997--1999 Martin Mares <mj@ucw.cz>
+ *     Copyright (c) 1997--2003 Martin Mares <mj@ucw.cz>
  *
  *     Can be freely distributed and used under the terms of the GNU GPL.
  */