diff options
author | Ondrej Zary <linux@rainbow-software.org> | 2011-05-12 22:18:22 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2011-05-13 19:43:24 +0200 |
commit | 10ca72014741554ad37c149ff0d9e93c1e3d5b7d (patch) | |
tree | 697fc1987e7ac705dbb1fbfc1211e9e3e988d576 /sound/pci/fm801.c | |
parent | 3d11ba5593b801b1db85e9680d585713e6039112 (diff) | |
download | linux-3.10-10ca72014741554ad37c149ff0d9e93c1e3d5b7d.tar.gz linux-3.10-10ca72014741554ad37c149ff0d9e93c1e3d5b7d.tar.bz2 linux-3.10-10ca72014741554ad37c149ff0d9e93c1e3d5b7d.zip |
ALSA: tea575x: use better card and bus names
Provide real card and bus_info instead of hardcoded values.
Signed-off-by: Ondrej Zary <linux@rainbow-software.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/fm801.c')
-rw-r--r-- | sound/pci/fm801.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/pci/fm801.c b/sound/pci/fm801.c index ae5c270bfa7..05553da2f6c 100644 --- a/sound/pci/fm801.c +++ b/sound/pci/fm801.c @@ -1232,6 +1232,7 @@ static int __devinit snd_fm801_create(struct snd_card *card, #ifdef TEA575X_RADIO chip->tea.private_data = chip; chip->tea.ops = &snd_fm801_tea_ops; + sprintf(chip->tea.bus_info, "PCI:%s", pci_name(pci)); if ((tea575x_tuner & TUNER_TYPE_MASK) > 0 && (tea575x_tuner & TUNER_TYPE_MASK) < 4) { if (snd_tea575x_init(&chip->tea)) @@ -1246,6 +1247,7 @@ static int __devinit snd_fm801_create(struct snd_card *card, break; } } + strlcpy(chip->tea.card, snd_fm801_tea575x_gpios[(tea575x_tuner & TUNER_TYPE_MASK) - 1].name, sizeof(chip->tea.card)); #endif *rchip = chip; |