From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756160Ab1EOJtp (ORCPT ); Sun, 15 May 2011 05:49:45 -0400 Received: from cantor.suse.de ([195.135.220.2]:40144 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753152Ab1EOJtm (ORCPT ); Sun, 15 May 2011 05:49:42 -0400 Date: Sun, 15 May 2011 11:49:37 +0200 Message-ID: From: Takashi Iwai To: Ondrej Zary Cc: alsa-devel@alsa-project.org, Kernel development list , linux-media@vger.kernel.org Subject: Re: [PATCH v2] fm801: clean-up radio-related Kconfig In-Reply-To: <201105142251.03823.linux@rainbow-software.org> References: <201105132026.40643.linux@rainbow-software.org> <201105142251.03823.linux@rainbow-software.org> User-Agent: Wanderlust/2.15.6 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (=?UTF-8?B?R29qxY0=?=) APEL/10.7 Emacs/23.2 (x86_64-suse-linux-gnu) MULE/6.0 (HANACHIRUSATO) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org At Sat, 14 May 2011 22:51:01 +0200, Ondrej Zary wrote: > > Remove TEA575X_RADIO define from fm801.c. > Also update Kconfig help text to include all supported cards. > > Signed-off-by: Ondrej Zary Thanks, applied now. Takashi > --- linux-2.6.39-rc2-/sound/pci/Kconfig 2011-05-14 22:22:11.000000000 +0200 > +++ linux-2.6.39-rc2/sound/pci/Kconfig 2011-05-14 22:24:29.000000000 +0200 > @@ -560,8 +560,8 @@ config SND_FM801_TEA575X_BOOL > depends on VIDEO_V4L2=y || VIDEO_V4L2=SND_FM801 > help > Say Y here to include support for soundcards based on the ForteMedia > - FM801 chip with a TEA5757 tuner connected to GPIO1-3 pins (Media > - Forte SF256-PCS-02) into the snd-fm801 driver. > + FM801 chip with a TEA5757 tuner (MediaForte SF256-PCS, SF256-PCP and > + SF64-PCR) into the snd-fm801 driver. > > config SND_TEA575X > tristate > --- linux-2.6.39-rc2-/sound/pci/fm801.c 2011-05-14 22:22:11.000000000 +0200 > +++ linux-2.6.39-rc2/sound/pci/fm801.c 2011-05-14 22:26:01.000000000 +0200 > @@ -38,7 +38,6 @@ > > #ifdef CONFIG_SND_FM801_TEA575X_BOOL > #include > -#define TEA575X_RADIO 1 > #endif > > MODULE_AUTHOR("Jaroslav Kysela "); > @@ -196,7 +195,7 @@ struct fm801 { > spinlock_t reg_lock; > struct snd_info_entry *proc_entry; > > -#ifdef TEA575X_RADIO > +#ifdef CONFIG_SND_FM801_TEA575X_BOOL > struct snd_tea575x tea; > #endif > > @@ -715,7 +714,7 @@ static int __devinit snd_fm801_pcm(struc > * TEA5757 radio > */ > > -#ifdef TEA575X_RADIO > +#ifdef CONFIG_SND_FM801_TEA575X_BOOL > > /* GPIO to TEA575x maps */ > struct snd_fm801_tea575x_gpio { > @@ -1150,7 +1149,7 @@ static int snd_fm801_free(struct fm801 * > outw(cmdw, FM801_REG(chip, IRQ_MASK)); > > __end_hw: > -#ifdef TEA575X_RADIO > +#ifdef CONFIG_SND_FM801_TEA575X_BOOL > snd_tea575x_exit(&chip->tea); > #endif > if (chip->irq >= 0) > @@ -1229,7 +1228,7 @@ static int __devinit snd_fm801_create(st > > snd_card_set_dev(card, &pci->dev); > > -#ifdef TEA575X_RADIO > +#ifdef CONFIG_SND_FM801_TEA575X_BOOL > chip->tea.private_data = chip; > chip->tea.ops = &snd_fm801_tea_ops; > sprintf(chip->tea.bus_info, "PCI:%s", pci_name(pci)); > > > -- > Ondrej Zary >