All of lore.kernel.org
 help / color / mirror / Atom feed
From: mst <gmane@misha.eml.cc>
To: linux-kernel@vger.kernel.org
Subject: lspci/pciutils  maintainer?
Date: Wed, 27 Nov 2002 00:58:37 +0200	[thread overview]
Message-ID: <as0ud4$2he$1@main.gmane.org> (raw)

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))




                 reply	other threads:[~2002-11-26 23:05 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='as0ud4$2he$1@main.gmane.org' \
    --to=gmane@misha.eml.cc \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.