diff options
author | Thomas Heijligen <thomas.heijligen@secunet.com> | 2023-02-27 16:02:28 +0100 |
---|---|---|
committer | Thomas Heijligen <src@posteo.de> | 2023-03-10 15:54:52 +0000 |
commit | 0e4d4eac78fbf437ba8e9b1c9d27600d2190023b (patch) | |
tree | a8aa31f8bf662347840503ee507cfa21c5f77ebe /include/platform | |
parent | c433910718cf5d5664aab87773ae473061e6b87b (diff) | |
download | flashrom-0e4d4eac78fbf437ba8e9b1c9d27600d2190023b.tar.gz flashrom-0e4d4eac78fbf437ba8e9b1c9d27600d2190023b.tar.bz2 flashrom-0e4d4eac78fbf437ba8e9b1c9d27600d2190023b.zip |
libpci: drop support for pciutils < 2.2.0
This version was released in september 2005 and had a breaking api
change. Drop it so that we don't need to maintain the old codepath any
longer. Beside that, we have already a second codepath which is using
the new `pci_get_dev` variant exclusively.
Change-Id: If943db350b561a005d8292a53d9255223db3d571
Signed-off-by: Thomas Heijligen <thomas.heijligen@secunet.com>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/73293
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Anastasia Klimchuk <aklm@chromium.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'include/platform')
-rw-r--r-- | include/platform/pci.h | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/include/platform/pci.h b/include/platform/pci.h index a0324f886..4ac108f26 100644 --- a/include/platform/pci.h +++ b/include/platform/pci.h @@ -1,19 +1,23 @@ /* - * This is a wrapper for libpci. - * ... + * This file is part of the flashrom project. + * + * Copyright (C) 2022 secunet Security Networks AG + * (written by Thomas Heijligen <thomas.heijligen@secunet.com) + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. */ - #ifndef __PLATFORM_PCI_H__ #define __PLATFORM_PCI_H__ -/* - * An old libpci version seems to use the variable name "index" which triggers - * shadowing warnings on systems which have the index() function in a default - * #include or as builtin. - */ -#define index shadow_workaround_index - /* Some NetBSDs are using an other include path for pci.h * e.g. NetBSD 9.0 on sparc64 pciutils-3.7.0nb2. * Other NetBSD platforms and versions uses the default path under pci/pci.h @@ -24,6 +28,4 @@ #include <pci/pci.h> #endif -#undef index - #endif /* __PLATFORM_PCI_H__ */ |