kernelnewbies.kernelnewbies.org archive mirror
 help / color / mirror / Atom feed
From: pebolle@tiscali.nl (Paul Bolle)
To: kernelnewbies@lists.kernelnewbies.org
Subject: How to find config options from module names? (For sound card NM10/ICH7)
Date: Sun, 14 Sep 2014 17:40:55 +0200	[thread overview]
Message-ID: <1410709255.31130.52.camel@x220> (raw)
In-Reply-To: <CABdVG0vxdvSO0ba0m7rkU+GFYL=fMePq+Kw7ezf=kLZBO4iCcA@mail.gmail.com>

On Sun, 2014-09-14 at 04:23 +0530, Naman Shekhar Mishra wrote:
> I tried searching for the device id in include/linux/pci_ids.h but it
> wasn't there.
> $ grep 27d8 include/linux/pci_ids.h 
>
> Can someone please tell me how to find all the config options for this
> sound card?

$ git grep -i 0x27d8
[...]
sound/pci/hda/hda_intel.c:      { PCI_DEVICE(0x8086, 0x27d8),
$ git grep -w hda_intel.o
sound/pci/hda/Makefile:snd-hda-intel-objs := hda_intel.o
$ git grep -w snd-hda-intel
[...]
sound/pci/hda/Makefile:snd-hda-intel-objs := hda_intel.o
sound/pci/hda/Makefile:snd-hda-intel-$(CONFIG_SND_HDA_I915) +=  hda_i915.o
sound/pci/hda/Makefile:obj-$(CONFIG_SND_HDA_INTEL) += snd-hda-intel.o

So it seems you have to start with SND_HDA_INTEL. But its Kconfig help
contains this line:
    Don't forget to choose the appropriate codec options below.

I don't know how to choose those "appropriate codec options", sorry.

Hope this helps.


Paul Bolle

      reply	other threads:[~2014-09-14 15:40 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-13 22:53 How to find config options from module names? (For sound card NM10/ICH7) Naman Shekhar Mishra
2014-09-14 15:40 ` Paul Bolle [this message]

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=1410709255.31130.52.camel@x220 \
    --to=pebolle@tiscali.nl \
    --cc=kernelnewbies@lists.kernelnewbies.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).