* lspci/pciutils maintainer?
@ 2002-11-26 22:58 mst
0 siblings, 0 replies; only message in thread
From: mst @ 2002-11-26 22:58 UTC (permalink / raw)
To: linux-kernel
Hello!
Does anyone know who maintains pciutils now?
I tried contacting Martin Mares <mj@suse.cz> but got no reply :(.
So I have no idea where to send it now.
Sorry if this is the wrong forum, pls mail me back off-list.
I have a trivial patch which intialises otherwise ununitialised
header type (It is later used to display capabilities and status for PCI-X
devices). As it is any PCIX devie is reported with non-bridge capabilities.
--- lspci.c Sat Mar 30 18:39:24 2002
+++ linux/lspci.c Thu Oct 31 14:16:08 2002
@@ -108,7 +108,8 @@ scan_device(struct pci_dev *p)
d->dev = p;
if (!pci_read_block(p, 0, d->config, how_much))
die("Unable to read %d bytes of configuration space.", how_much);
- if (how_much < 128 && (d->config[PCI_HEADER_TYPE] & 0x7f) ==
PCI_HEADER_TYPE_CARDBUS)
+ p->hdrtype=d->config[PCI_HEADER_TYPE] & 0x7f;
+ if (how_much < 128 && p->hdrtype == PCI_HEADER_TYPE_CARDBUS)
{
/* For cardbus bridges, we need to fetch 64 bytes more to get the full
standard header... */
if (!pci_read_block(p, 64, d->config+64, 64))
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2002-11-26 23:05 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-11-26 22:58 lspci/pciutils maintainer? mst
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.