[PATCH] ASoC: omap-dmic: Use devm_clk_get

2014-07-10 Thread Himangi Saraogi
This patch introduces the use of managed interfaces like devm_clk_get and does away with the clk_puts in the probe and remove functions. A label is also done away with. Signed-off-by: Himangi Saraogi himangi...@gmail.com --- This is a follow up to ASoC: omap-dmic: use managed interfaces which

[PATCH] ASoC: omap-dmic: use managed interfaces

2014-07-09 Thread Himangi Saraogi
This patch moves data allocated using clk_put and snd_soc_register_component to the corresponding managed interfaces and does away with the functions to free memory in the probe and remove functions. The probe function is no longer required and is completely removed. Signed-off-by: Himangi