All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/4] align modalias with driver name for module auto-loading
@ 2015-05-14  8:59 Zhangfei Gao
  2015-05-14  8:59 ` [PATCH 1/4] mmc: dw_mmc: k3: Fix modalias to make module auto-loading work Zhangfei Gao
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Zhangfei Gao @ 2015-05-14  8:59 UTC (permalink / raw)
  To: Jaehoon Chung, ulf.hansson; +Cc: linux-mmc, Zhangfei Gao

Zhangfei Gao (4):
  mmc: dw_mmc: k3: Fix modalias to make module auto-loading work
  mmc: dw_mmc: exynos: Fix modalias to make module auto-loading work
  mmc: dw_mmc: rockchip: Fix modalias to make module auto-loading work
  mmc: sdhci-st: Fix modalias to make module auto-loading work

 drivers/mmc/host/dw_mmc-exynos.c   | 2 +-
 drivers/mmc/host/dw_mmc-k3.c       | 2 +-
 drivers/mmc/host/dw_mmc-rockchip.c | 2 +-
 drivers/mmc/host/sdhci-st.c        | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

-- 
1.9.1


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH 1/4] mmc: dw_mmc: k3: Fix modalias to make module auto-loading work
  2015-05-14  8:59 [PATCH 0/4] align modalias with driver name for module auto-loading Zhangfei Gao
@ 2015-05-14  8:59 ` Zhangfei Gao
  2015-05-14  8:59 ` [PATCH 2/4] mmc: dw_mmc: exynos: " Zhangfei Gao
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 7+ messages in thread
From: Zhangfei Gao @ 2015-05-14  8:59 UTC (permalink / raw)
  To: Jaehoon Chung, ulf.hansson; +Cc: linux-mmc, Zhangfei Gao

Make the modalias match driver name, this is required to make module
auto-loading work.

Signed-off-by: Zhangfei Gao <zhangfei.gao@linaro.org>
---
 drivers/mmc/host/dw_mmc-k3.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mmc/host/dw_mmc-k3.c b/drivers/mmc/host/dw_mmc-k3.c
index 137670b..63c2e2e 100644
--- a/drivers/mmc/host/dw_mmc-k3.c
+++ b/drivers/mmc/host/dw_mmc-k3.c
@@ -193,4 +193,4 @@ module_platform_driver(dw_mci_k3_pltfm_driver);
 
 MODULE_DESCRIPTION("K3 Specific DW-MSHC Driver Extension");
 MODULE_LICENSE("GPL v2");
-MODULE_ALIAS("platform:dwmmc-k3");
+MODULE_ALIAS("platform:dwmmc_k3");
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH 2/4] mmc: dw_mmc: exynos: Fix modalias to make module auto-loading work
  2015-05-14  8:59 [PATCH 0/4] align modalias with driver name for module auto-loading Zhangfei Gao
  2015-05-14  8:59 ` [PATCH 1/4] mmc: dw_mmc: k3: Fix modalias to make module auto-loading work Zhangfei Gao
@ 2015-05-14  8:59 ` Zhangfei Gao
  2015-05-14  8:59 ` [PATCH 3/4] mmc: dw_mmc: rockchip: " Zhangfei Gao
  2015-05-14  8:59 ` [PATCH 4/4] mmc: sdhci-st: " Zhangfei Gao
  3 siblings, 0 replies; 7+ messages in thread
From: Zhangfei Gao @ 2015-05-14  8:59 UTC (permalink / raw)
  To: Jaehoon Chung, ulf.hansson; +Cc: linux-mmc, Zhangfei Gao

Make the modalias match driver name, this is required to make module
auto-loading work.

Signed-off-by: Zhangfei Gao <zhangfei.gao@linaro.org>
---
 drivers/mmc/host/dw_mmc-exynos.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mmc/host/dw_mmc-exynos.c b/drivers/mmc/host/dw_mmc-exynos.c
index e761eb1..1e75309 100644
--- a/drivers/mmc/host/dw_mmc-exynos.c
+++ b/drivers/mmc/host/dw_mmc-exynos.c
@@ -556,4 +556,4 @@ module_platform_driver(dw_mci_exynos_pltfm_driver);
 MODULE_DESCRIPTION("Samsung Specific DW-MSHC Driver Extension");
 MODULE_AUTHOR("Thomas Abraham <thomas.ab@samsung.com");
 MODULE_LICENSE("GPL v2");
-MODULE_ALIAS("platform:dwmmc-exynos");
+MODULE_ALIAS("platform:dwmmc_exynos");
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH 3/4] mmc: dw_mmc: rockchip: Fix modalias to make module auto-loading work
  2015-05-14  8:59 [PATCH 0/4] align modalias with driver name for module auto-loading Zhangfei Gao
  2015-05-14  8:59 ` [PATCH 1/4] mmc: dw_mmc: k3: Fix modalias to make module auto-loading work Zhangfei Gao
  2015-05-14  8:59 ` [PATCH 2/4] mmc: dw_mmc: exynos: " Zhangfei Gao
@ 2015-05-14  8:59 ` Zhangfei Gao
  2015-05-14 15:22   ` Doug Anderson
  2015-05-14  8:59 ` [PATCH 4/4] mmc: sdhci-st: " Zhangfei Gao
  3 siblings, 1 reply; 7+ messages in thread
From: Zhangfei Gao @ 2015-05-14  8:59 UTC (permalink / raw)
  To: Jaehoon Chung, ulf.hansson; +Cc: linux-mmc, Zhangfei Gao, Doug Anderson

Make the modalias match driver name, this is required to make module
auto-loading work.

Signed-off-by: Zhangfei Gao <zhangfei.gao@linaro.org>
CC: Doug Anderson <dianders@chromium.org>
---
 drivers/mmc/host/dw_mmc-rockchip.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mmc/host/dw_mmc-rockchip.c b/drivers/mmc/host/dw_mmc-rockchip.c
index dbf166f..de15121 100644
--- a/drivers/mmc/host/dw_mmc-rockchip.c
+++ b/drivers/mmc/host/dw_mmc-rockchip.c
@@ -153,5 +153,5 @@ module_platform_driver(dw_mci_rockchip_pltfm_driver);
 
 MODULE_AUTHOR("Addy Ke <addy.ke@rock-chips.com>");
 MODULE_DESCRIPTION("Rockchip Specific DW-MSHC Driver Extension");
-MODULE_ALIAS("platform:dwmmc-rockchip");
+MODULE_ALIAS("platform:dwmmc_rockchip");
 MODULE_LICENSE("GPL v2");
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH 4/4] mmc: sdhci-st: Fix modalias to make module auto-loading work
  2015-05-14  8:59 [PATCH 0/4] align modalias with driver name for module auto-loading Zhangfei Gao
                   ` (2 preceding siblings ...)
  2015-05-14  8:59 ` [PATCH 3/4] mmc: dw_mmc: rockchip: " Zhangfei Gao
@ 2015-05-14  8:59 ` Zhangfei Gao
  2015-05-18  9:17   ` Ulf Hansson
  3 siblings, 1 reply; 7+ messages in thread
From: Zhangfei Gao @ 2015-05-14  8:59 UTC (permalink / raw)
  To: Jaehoon Chung, ulf.hansson; +Cc: linux-mmc, Zhangfei Gao, Peter Griffin

Make the modalias match driver name, this is required to make module
auto-loading work.

Signed-off-by: Zhangfei Gao <zhangfei.gao@linaro.org>
CC: Peter Griffin <peter.griffin@linaro.org>
---
 drivers/mmc/host/sdhci-st.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mmc/host/sdhci-st.c b/drivers/mmc/host/sdhci-st.c
index 682f2bb..969c2b0 100644
--- a/drivers/mmc/host/sdhci-st.c
+++ b/drivers/mmc/host/sdhci-st.c
@@ -509,4 +509,4 @@ module_platform_driver(sdhci_st_driver);
 MODULE_DESCRIPTION("SDHCI driver for STMicroelectronics SoCs");
 MODULE_AUTHOR("Giuseppe Cavallaro <peppe.cavallaro@st.com>");
 MODULE_LICENSE("GPL v2");
-MODULE_ALIAS("platform:st-sdhci");
+MODULE_ALIAS("platform:sdhci-st");
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH 3/4] mmc: dw_mmc: rockchip: Fix modalias to make module auto-loading work
  2015-05-14  8:59 ` [PATCH 3/4] mmc: dw_mmc: rockchip: " Zhangfei Gao
@ 2015-05-14 15:22   ` Doug Anderson
  0 siblings, 0 replies; 7+ messages in thread
From: Doug Anderson @ 2015-05-14 15:22 UTC (permalink / raw)
  To: Zhangfei Gao; +Cc: Jaehoon Chung, Ulf Hansson, linux-mmc

Hi,

On Thu, May 14, 2015 at 1:59 AM, Zhangfei Gao <zhangfei.gao@linaro.org> wrote:
> Make the modalias match driver name, this is required to make module
> auto-loading work.
>
> Signed-off-by: Zhangfei Gao <zhangfei.gao@linaro.org>
> CC: Doug Anderson <dianders@chromium.org>
> ---
>  drivers/mmc/host/dw_mmc-rockchip.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Thanks!  Reviewed-by: Doug Anderson <dianders@chromium.org>

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH 4/4] mmc: sdhci-st: Fix modalias to make module auto-loading work
  2015-05-14  8:59 ` [PATCH 4/4] mmc: sdhci-st: " Zhangfei Gao
@ 2015-05-18  9:17   ` Ulf Hansson
  0 siblings, 0 replies; 7+ messages in thread
From: Ulf Hansson @ 2015-05-18  9:17 UTC (permalink / raw)
  To: Zhangfei Gao; +Cc: Jaehoon Chung, linux-mmc, Peter Griffin

On 14 May 2015 at 10:59, Zhangfei Gao <zhangfei.gao@linaro.org> wrote:
> Make the modalias match driver name, this is required to make module
> auto-loading work.
>
> Signed-off-by: Zhangfei Gao <zhangfei.gao@linaro.org>
> CC: Peter Griffin <peter.griffin@linaro.org>

Thanks, applied.

Kind regards
Uffe

> ---
>  drivers/mmc/host/sdhci-st.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/mmc/host/sdhci-st.c b/drivers/mmc/host/sdhci-st.c
> index 682f2bb..969c2b0 100644
> --- a/drivers/mmc/host/sdhci-st.c
> +++ b/drivers/mmc/host/sdhci-st.c
> @@ -509,4 +509,4 @@ module_platform_driver(sdhci_st_driver);
>  MODULE_DESCRIPTION("SDHCI driver for STMicroelectronics SoCs");
>  MODULE_AUTHOR("Giuseppe Cavallaro <peppe.cavallaro@st.com>");
>  MODULE_LICENSE("GPL v2");
> -MODULE_ALIAS("platform:st-sdhci");
> +MODULE_ALIAS("platform:sdhci-st");
> --
> 1.9.1
>

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2015-05-18  9:17 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-14  8:59 [PATCH 0/4] align modalias with driver name for module auto-loading Zhangfei Gao
2015-05-14  8:59 ` [PATCH 1/4] mmc: dw_mmc: k3: Fix modalias to make module auto-loading work Zhangfei Gao
2015-05-14  8:59 ` [PATCH 2/4] mmc: dw_mmc: exynos: " Zhangfei Gao
2015-05-14  8:59 ` [PATCH 3/4] mmc: dw_mmc: rockchip: " Zhangfei Gao
2015-05-14 15:22   ` Doug Anderson
2015-05-14  8:59 ` [PATCH 4/4] mmc: sdhci-st: " Zhangfei Gao
2015-05-18  9:17   ` Ulf Hansson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.