Notes and actions from MM WG call on 15th March

2011-03-20 Thread Sachin Gupta
> > Hi All, > >Please find enclosed link to minutes and actions for multimedia wg > meeting on 15st March 2011. > > > https://wiki.linaro.org/WorkingGroups/Middleware/Multimedia/Notes/2011-03-15 > > Summary > - Kan created seperate AAC encoder lib from Android aac encoder.Talking to > sourcefo

[PATCH 3/5] mmc: sdhci: make sdhci-dove driver self registered

2011-03-20 Thread Shawn Guo
The patch adds sdhci-dove its own .probe and .remove which in turn call into the common functions provided by sdhci-pltfm.c, so that sdhci-dove driver registers itself and keep all sdhci-dove specific things like sdhci_dove_pdata away from sdhci-pltfm.c which is common. Signed-off-by: Shawn Guo -

[PATCH 4/5] mmc: sdhci: make sdhci-tegra driver self registered

2011-03-20 Thread Shawn Guo
The patch adds sdhci-tegra its own .probe and .remove which in turn call into the common functions provided by sdhci-pltfm.c, so that sdhci-tegra driver registers itself and keep all sdhci-tegra specific things like sdhci_tegra_pdata away from sdhci-pltfm.c which is common. As sdhci-tegra is the l

[PATCH 2/5] mmc: sdhci: make sdhci-cns3xxx driver self registered

2011-03-20 Thread Shawn Guo
The patch adds sdhci-cns3xxx its own .probe and .remove which in turn call into the common functions provided by sdhci-pltfm.c, so that sdhci-cns3xxx driver registers itself and keep all sdhci-cns3xxx specific things like sdhci_cns3xxx_pdata away from sdhci-pltfm.c which is common. Signed-off-by:

[PATCH 1/5] mmc: sdhci: make sdhci-esdhc-imx driver self registered

2011-03-20 Thread Shawn Guo
The patch turns the common stuff to in sdhci-pltfm.c into functions, and add sdhci-esdhc-imx its own .probe and .remove which in turn call into the common functions, so that sdhci-esdhc-imx driver registers itself and keep all sdhci-esdhc-imx specific things like sdhci_esdhc_imx_pdata away from sdh

[PATCH 0/5] make sdhci device drivers self registered

2011-03-20 Thread Shawn Guo
This patch set is to take sdhci device driver specific things out from sdhci-pltfm.c and make them self registered. Here are the difference it makes. * Get the sdhci device driver follow the Linux trend that driver take the registration by its own * sdhci-pltfm.c becomes significantly simpler

[PATCH 5/5] mmc: sdhci: update Makefile/Kconfig for sdhci_pltfm change

2011-03-20 Thread Shawn Guo
The sdhci_pltfm.c becomes a file only having common support functions than a driver with its registeration before. The patch is to update Makefile and Kconfig to let MMC_SDHCI_PLTFM be selected by specific SDHCI device drivers. Signed-off-by: Shawn Guo --- drivers/mmc/host/Kconfig | 24 +