summaryrefslogtreecommitdiff
path: root/scanpci
AgeCommit message (Collapse)AuthorFilesLines
2013-07-20Fix Sun bug #7035791: scanpci should report 64 bit registersJohn Martin1-2/+4
On a system which has allocated 64-bit device addresses scanpci -v will show entries such as: [...] BASE0 0xce000000 SIZE 16777216 MEM BASE1 0x00000fc1f8000000 SIZE 134217728 MEM64 PREFETCHABLE BASE3 0x00000fc1f6000000 SIZE 33554432 MEM64 PREFETCHABLE [...] instead of: [...] BASE0 0xce000000 SIZE 16777216 MEM BASE1 0xf8000000 SIZE 134217728 MEM PREFETCHABLE BASE3 0xf6000000 SIZE 33554432 MEM PREFETCHABLE [...] Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2012-10-21scanpci: print meaningful info on BASEROMHenry Zhao2-3/+7
Signed-off-by: Henry Zhao <henry.zhao@oracle.com> Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2011-11-09Fix some -Wformat errors in scanpciJeremy Huddleston1-6/+7
Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2011-10-09scanpci: Build fix for systems without <err.h>Jeremy Huddleston1-1/+19
https://bugs.freedesktop.org/show_bug.cgi?id=31133 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2010-10-15config: use LDADD to obtain appropriate dependenciesGaetan Nadon1-1/+1
In generated scanpci/Makefile, this line is added: scanpci_DEPENDENCIES = $(top_builddir)/src/libpciaccess.la If the content of the library changes, the tool will rebuild. When scanpci was in the same directory as the library, the .la file was used. This will also ensure the "installed" pciaccess library is not used. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-10-03scanpci.c: remove offending whitespace as reported by git diffGaetan Nadon1-5/+5
Reviewed-by: Rémi Cardona <remi@gentoo.org> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-10-03config: provide a makefile for scanpci dev toolGaetan Nadon3-0/+245
No function changes. Note that automake generates a wrapper script if libpciaccess is not installed at configuration time, which is the most common case. If it is installed at configuration time, you get an executable. The makefile build order ensures the lib is build before scanpci. Reviewed-by: Rémi Cardona <remi@gentoo.org> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>