Am Dienstag, den 08.01.2013, 15:17 -0700 schrieb Stephen Warren: > On 01/04/2013 06:18 PM, Lucas Stach wrote: > > This adds a very simple machine driver using the Wolfson wm9712 AC97 > > codec. > > > diff --git a/sound/soc/tegra/tegra_wm9712.c b/sound/soc/tegra/tegra_wm9712.c > > > > +static int tegra_wm9712_init(struct snd_soc_pcm_runtime *rtd) > > > + err = snd_soc_dapm_sync(dapm); > > + if (err) > > + return err; > > + > > + return 0; > > That block is just "return snd_soc_dapm_sync(dapm);" > > > +static int tegra_wm9712_driver_probe(struct platform_device *pdev) > > > + machine->codec = platform_device_alloc("wm9712-codec", -1); > > Hmmm. I thought that could be auto-instantiated based on probing the > AC'97 bus for whatever was there? AC97 is in principle probeable by reading the first regs of the codec, but all the infrastructure to do proper hotplugging on the AC97 bus is missing in the kernel. As I didn't want to be the one to add all this infrastructure to a dying audio platform, I opted to do the same thing as all the other platform using AC97 and instantiate the codec from the machine driver. This binds machine driver and codec together, but after all the machine driver is already both pretty small and codec specific. So considering the number of Tegra platform out there using AC97 I figured it's not worth the hassle trying to write a generic machine driver. > > > + ret = platform_device_add(machine->codec); > > + if (ret) > > + goto codec_put; > > After this point, ... > > > + ret = snd_soc_of_parse_card_name(card, "nvidia,model"); > > + if (ret) > > + goto codec_put; > > don't the error paths need to undo platform_device_add()? Or does > platform_device_put() do that automatically? > Yep, I've just gone through the implementation of those platform functions and at some point we reverse the device_add. I'll fix this up. > > +codec_put: > > + platform_device_put(machine->codec); > > + return ret; > > +} > > > +static int tegra_wm9712_driver_remove(struct platform_device *pdev) > > > + platform_device_put(machine->codec); > > Same comment here. > -- To unsubscribe from this list: send the line "unsubscribe linux-tegra" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html