summaryrefslogtreecommitdiff
path: root/setpci.c
Commit message (Expand)AuthorAgeFilesLines
* setpci: Check if standard register on device existPali Rohár2022-10-301-125/+137
* setpci: Define CAPABILITIES registerPali Rohár2022-06-141-0/+1
* pciutils: Add decode support for RCECsSean V Kelley2020-09-021-1/+1
* setpci: Added an option to skip the bus scan if possibleMartin Mares2020-02-231-62/+119
* setpci: Add capability namesBjorn Helgaas2018-11-121-0/+25
* setpci: Pluralize 'capability' in error if neededDaniel Schaefer2018-11-121-2/+3
* Enable setpci to target n-th capability of idDaniel Schaefer2018-10-141-5/+28
* setpci: fix length of SUBSYSTEM_VENDOR_IDCharles.Rose@dell.com2016-09-261-1/+1
* Add support for Downstream Port ContainmentKeith Busch2016-05-141-0/+1
* setpci: ~0UL should be ~0U, no longs are involved anymoreMartin Mares2013-04-011-2/+2
* Moved #include <unistd.h> to pciutils.h and avoid it on WindowsMartin Mares2010-12-041-1/+0
* Be ISO C89 compliant (still needed for MSVC)Martin Mares2010-12-041-1/+2
* One more fix for the syntax error checks in setpci argument parser.Martin Mares2009-02-011-1/+5
* setpci: Fixed a typo in parsing of values, causing SIGSEGV on some bad inputs.Martin Mares2009-01-301-2/+2
* setpci: Fixed a silly bug in parsing of options.Martin Mares2008-11-111-3/+8
* setpci: Cleaned up reporting of parse errors.Martin Mares2008-11-111-41/+44
* setpci: Decorate trace() with PCI_PRINTF.Martin Mares2008-11-111-1/+1
* setpci: Even better tracing messages.Martin Mares2008-11-111-3/+3
* setpci: Do not request read-write access when in demo mode.Martin Mares2008-11-111-0/+2
* setpci: Better tracing and reporting of runtime errors.Martin Mares2008-11-111-31/+30
* Use PCI_CAP_xxx internally in setpci.Martin Mares2008-11-111-24/+26
* Implemented `setpci --dumpregs'.Martin Mares2008-11-111-0/+24
* Exit correctly after `setpci --version'.Martin Mares2008-11-111-1/+1
* Let setpci support capabilities.Martin Mares2008-11-111-120/+265
* More splitting of the argument parser.Martin Mares2008-11-101-137/+142
* Coding style cleanup: `for(...)' wants a space.Martin Mares2008-11-101-7/+7
* Split parsing of options in setpci to multiple functions.Martin Mares2008-11-101-34/+44
* Tidy up help texts on usage.Martin Mares2008-02-121-1/+8
* Annotate printf-like functions with format checking attributes.Martin Mares2008-02-121-1/+1
* Cleaned up the list of options.Martin Mares2008-02-111-4/+4
* die() now uses the right program name when printing an error message.Martin Mares2006-05-311-1/+3
* Don't crash when an invalid width is specified.Martin Mares2006-05-311-1/+1
* Added support for 4096-byte extended configuration space.Martin Mares2006-05-051-2/+2
* Preliminary support for PCI domainsMartin Mares2006-05-051-1/+1
* Removed "Linux" from the package nameMartin Mares2006-05-051-1/+1
* setpci: -D should not disable readingMartin Mares2006-05-051-16/+11
* Better error messagesMartin Mares2006-05-051-34/+37
* Introduced NONRET macroMartin Mares2006-05-051-3/+1
* Support masking in setpciMartin Mares2006-05-051-46/+108
* Removed $Id$Martin Mares2006-05-051-2/+0
* Changed all my email addresses to mj@ucw.cz.Martin Mares2006-05-051-2/+2
* Don't crash when -s or -d is not given an argument.Martin Mares2006-05-051-2/+2
* Don't forget to increment address after writing single value, so thatMartin Mares2006-05-051-8/+10
* Rewrote the PCI Utilities. All PCI configuration space access has beenMartin Mares2006-05-051-173/+69
* Oops, the test for glibc version was wrong :-|Martin Mares2006-05-051-2/+2
* Don't include <syscall-list.h> on glibc >= 2.1, since it doesn't existMartin Mares2006-05-051-2/+2
* glibc 2.1.x defines pread()/pwrite() in its include files, no needMartin Mares2006-05-051-1/+5
* Fixed problems with glibc 1.99 on PPC. Thanks, Geert.Martin Mares2006-05-051-2/+2
* Define SYS_(pread|pwrite) as __NR_\1 on glibc systems unless defined by glibcMartin Mares2006-05-051-3/+9
* pread()/pwrite() now should work even with glibc on Alpha.Martin Mares2006-05-051-2/+27