Re: [PATCH 1/2] mmc: sdhci-bcm-kona: Use sdhci_pltfm_unregister instead of open coded

2013-09-25 Thread Chris Ball
Hi Axel, On Tue, Sep 17 2013, Axel Lin wrote: > This avoid duplicated implementation and also fixes missing iounmap() and > release_mem_region() calls in sdhci_bcm_kona_remove(). > sdhci_pltfm_init() calls request_mem_region() and ioremap(), thus we need to > call the corresponding iounmap() and r

Re: [PATCH 1/2] mmc: sdhci-bcm-kona: Use sdhci_pltfm_unregister instead of open coded

2013-09-20 Thread Christian Daudt
On 13-09-17 12:59 AM, Axel Lin wrote: This avoid duplicated implementation and also fixes missing iounmap() and release_mem_region() calls in sdhci_bcm_kona_remove(). sdhci_pltfm_init() calls request_mem_region() and ioremap(), thus we need to call the corresponding iounmap() and release_mem_regi

[PATCH 1/2] mmc: sdhci-bcm-kona: Use sdhci_pltfm_unregister instead of open coded

2013-09-17 Thread Axel Lin
This avoid duplicated implementation and also fixes missing iounmap() and release_mem_region() calls in sdhci_bcm_kona_remove(). sdhci_pltfm_init() calls request_mem_region() and ioremap(), thus we need to call the corresponding iounmap() and release_mem_region() calls in sdhci_bcm_kona_remove().