public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] mfd: twl4030-madc: add "platform:" prefix for platform modalias
@ 2011-03-07  3:02 Axel Lin
  2011-03-07  3:04 ` [PATCH 2/3] mtd: " Axel Lin
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Axel Lin @ 2011-03-07  3:02 UTC (permalink / raw)
  To: linux-kernel; +Cc: J Keerthy, Samuel Ortiz

Since 43cc71eed1250755986da4c0f9898f9a635cb3bf (platform: prefix MODALIAS
with "platform:"), the platform modalias is prefixed with "platform:".

Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
 drivers/mfd/twl4030-madc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/mfd/twl4030-madc.c b/drivers/mfd/twl4030-madc.c
index e9884e2..3941ddc 100644
--- a/drivers/mfd/twl4030-madc.c
+++ b/drivers/mfd/twl4030-madc.c
@@ -799,4 +799,4 @@ module_exit(twl4030_madc_exit);
 MODULE_DESCRIPTION("TWL4030 ADC driver");
 MODULE_LICENSE("GPL");
 MODULE_AUTHOR("J Keerthy");
-MODULE_ALIAS("twl4030_madc");
+MODULE_ALIAS("platform:twl4030_madc");
-- 
1.7.2




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

* [PATCH 2/3] mtd: add "platform:" prefix for platform modalias
  2011-03-07  3:02 [PATCH 1/3] mfd: twl4030-madc: add "platform:" prefix for platform modalias Axel Lin
@ 2011-03-07  3:04 ` Axel Lin
  2011-03-08 11:01   ` Artem Bityutskiy
  2011-03-07  3:05 ` [PATCH 3/3] hwmon: twl4030-madc-hwmon: " Axel Lin
  2011-03-14 10:23 ` [PATCH 1/3] mfd: twl4030-madc: " Samuel Ortiz
  2 siblings, 1 reply; 7+ messages in thread
From: Axel Lin @ 2011-03-07  3:04 UTC (permalink / raw)
  To: linux-kernel
  Cc: Jian Zhang, Vimal Singh, Kyungmin Park, Jarkko Lavinen,
	David Woodhouse, linux-mtd

Since 43cc71eed1250755986da4c0f9898f9a635cb3bf (platform: prefix MODALIAS
with "platform:"), the platform modalias is prefixed with "platform:".

Signed-off-by: Axel Lin <axel.lin@gmail.com>
Cc: Jian Zhang <jzhang@ti.com>
Cc: Vimal Singh <vimalsingh@ti.com>
Cc: Kyungmin Park <kyungmin.park@samsung.com>
Cc: Jarkko Lavinen <jarkko.lavinen@nokia.com>
---
 drivers/mtd/nand/omap2.c      |    2 +-
 drivers/mtd/onenand/generic.c |    2 +-
 drivers/mtd/onenand/omap2.c   |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/mtd/nand/omap2.c b/drivers/mtd/nand/omap2.c
index 4e33972..7b8f1ff 100644
--- a/drivers/mtd/nand/omap2.c
+++ b/drivers/mtd/nand/omap2.c
@@ -1159,6 +1159,6 @@ static void __exit omap_nand_exit(void)
 module_init(omap_nand_init);
 module_exit(omap_nand_exit);
 
-MODULE_ALIAS(DRIVER_NAME);
+MODULE_ALIAS("platform:" DRIVER_NAME);
 MODULE_LICENSE("GPL");
 MODULE_DESCRIPTION("Glue layer for NAND flash on TI OMAP boards");
diff --git a/drivers/mtd/onenand/generic.c b/drivers/mtd/onenand/generic.c
index e789149..ac08750 100644
--- a/drivers/mtd/onenand/generic.c
+++ b/drivers/mtd/onenand/generic.c
@@ -131,7 +131,7 @@ static struct platform_driver generic_onenand_driver = {
 	.remove		= __devexit_p(generic_onenand_remove),
 };
 
-MODULE_ALIAS(DRIVER_NAME);
+MODULE_ALIAS("platform:" DRIVER_NAME);
 
 static int __init generic_onenand_init(void)
 {
diff --git a/drivers/mtd/onenand/omap2.c b/drivers/mtd/onenand/omap2.c
index ec26399..14a49ab 100644
--- a/drivers/mtd/onenand/omap2.c
+++ b/drivers/mtd/onenand/omap2.c
@@ -840,7 +840,7 @@ static void __exit omap2_onenand_exit(void)
 module_init(omap2_onenand_init);
 module_exit(omap2_onenand_exit);
 
-MODULE_ALIAS(DRIVER_NAME);
+MODULE_ALIAS("platform:" DRIVER_NAME);
 MODULE_LICENSE("GPL");
 MODULE_AUTHOR("Jarkko Lavinen <jarkko.lavinen@nokia.com>");
 MODULE_DESCRIPTION("Glue layer for OneNAND flash on OMAP2 / OMAP3");
-- 
1.7.2




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

* [PATCH 3/3] hwmon: twl4030-madc-hwmon: add "platform:" prefix for platform modalias
  2011-03-07  3:02 [PATCH 1/3] mfd: twl4030-madc: add "platform:" prefix for platform modalias Axel Lin
  2011-03-07  3:04 ` [PATCH 2/3] mtd: " Axel Lin
@ 2011-03-07  3:05 ` Axel Lin
  2011-03-08  1:23   ` Guenter Roeck
  2011-03-28  6:43   ` Guenter Roeck
  2011-03-14 10:23 ` [PATCH 1/3] mfd: twl4030-madc: " Samuel Ortiz
  2 siblings, 2 replies; 7+ messages in thread
From: Axel Lin @ 2011-03-07  3:05 UTC (permalink / raw)
  To: linux-kernel; +Cc: J Keerthy, Jean Delvare, Guenter Roeck, lm-sensors

Since 43cc71eed1250755986da4c0f9898f9a635cb3bf (platform: prefix MODALIAS
with "platform:"), the platform modalias is prefixed with "platform:".

Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
 drivers/hwmon/twl4030-madc-hwmon.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/hwmon/twl4030-madc-hwmon.c b/drivers/hwmon/twl4030-madc-hwmon.c
index 97e22be..de58191 100644
--- a/drivers/hwmon/twl4030-madc-hwmon.c
+++ b/drivers/hwmon/twl4030-madc-hwmon.c
@@ -154,4 +154,4 @@ module_exit(twl4030_madc_hwmon_exit);
 MODULE_DESCRIPTION("TWL4030 ADC Hwmon driver");
 MODULE_LICENSE("GPL");
 MODULE_AUTHOR("J Keerthy");
-MODULE_ALIAS("twl4030_madc_hwmon");
+MODULE_ALIAS("platform:twl4030_madc_hwmon");
-- 
1.7.2




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

* Re: [PATCH 3/3] hwmon: twl4030-madc-hwmon: add "platform:" prefix for platform modalias
  2011-03-07  3:05 ` [PATCH 3/3] hwmon: twl4030-madc-hwmon: " Axel Lin
@ 2011-03-08  1:23   ` Guenter Roeck
  2011-03-28  6:43   ` Guenter Roeck
  1 sibling, 0 replies; 7+ messages in thread
From: Guenter Roeck @ 2011-03-08  1:23 UTC (permalink / raw)
  To: Axel Lin
  Cc: linux-kernel@vger.kernel.org, J Keerthy, Jean Delvare,
	lm-sensors@lm-sensors.org

On Sun, Mar 06, 2011 at 10:05:33PM -0500, Axel Lin wrote:
> Since 43cc71eed1250755986da4c0f9898f9a635cb3bf (platform: prefix MODALIAS
> with "platform:"), the platform modalias is prefixed with "platform:".
> 
> Signed-off-by: Axel Lin <axel.lin@gmail.com>

Acked-by: Guenter Roeck <guenter.roeck@ericsson.com>

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

* Re: [PATCH 2/3] mtd: add "platform:" prefix for platform modalias
  2011-03-07  3:04 ` [PATCH 2/3] mtd: " Axel Lin
@ 2011-03-08 11:01   ` Artem Bityutskiy
  0 siblings, 0 replies; 7+ messages in thread
From: Artem Bityutskiy @ 2011-03-08 11:01 UTC (permalink / raw)
  To: Axel Lin
  Cc: linux-kernel, Jian Zhang, Vimal Singh, Kyungmin Park,
	Jarkko Lavinen, David Woodhouse, linux-mtd

On Mon, 2011-03-07 at 11:04 +0800, Axel Lin wrote:
> Since 43cc71eed1250755986da4c0f9898f9a635cb3bf (platform: prefix MODALIAS
> with "platform:"), the platform modalias is prefixed with "platform:".
> 
> Signed-off-by: Axel Lin <axel.lin@gmail.com>
> Cc: Jian Zhang <jzhang@ti.com>
> Cc: Vimal Singh <vimalsingh@ti.com>
> Cc: Kyungmin Park <kyungmin.park@samsung.com>
> Cc: Jarkko Lavinen <jarkko.lavinen@nokia.com>

Pushed to l2-mtd-2.6.git, thanks!

-- 
Best Regards,
Artem Bityutskiy (Артём Битюцкий)


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

* Re: [PATCH 1/3] mfd: twl4030-madc: add "platform:" prefix for platform modalias
  2011-03-07  3:02 [PATCH 1/3] mfd: twl4030-madc: add "platform:" prefix for platform modalias Axel Lin
  2011-03-07  3:04 ` [PATCH 2/3] mtd: " Axel Lin
  2011-03-07  3:05 ` [PATCH 3/3] hwmon: twl4030-madc-hwmon: " Axel Lin
@ 2011-03-14 10:23 ` Samuel Ortiz
  2 siblings, 0 replies; 7+ messages in thread
From: Samuel Ortiz @ 2011-03-14 10:23 UTC (permalink / raw)
  To: Axel Lin; +Cc: linux-kernel, J Keerthy

Hi Axel,

On Mon, Mar 07, 2011 at 11:02:29AM +0800, Axel Lin wrote:
> Since 43cc71eed1250755986da4c0f9898f9a635cb3bf (platform: prefix MODALIAS
> with "platform:"), the platform modalias is prefixed with "platform:".
Patch applied, thanks a bunch.

Cheers,
Samuel.

-- 
Intel Open Source Technology Centre
http://oss.intel.com/

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

* Re: [PATCH 3/3] hwmon: twl4030-madc-hwmon: add "platform:" prefix for platform modalias
  2011-03-07  3:05 ` [PATCH 3/3] hwmon: twl4030-madc-hwmon: " Axel Lin
  2011-03-08  1:23   ` Guenter Roeck
@ 2011-03-28  6:43   ` Guenter Roeck
  1 sibling, 0 replies; 7+ messages in thread
From: Guenter Roeck @ 2011-03-28  6:43 UTC (permalink / raw)
  To: Axel Lin; +Cc: linux-kernel, J Keerthy, Jean Delvare, lm-sensors, Samuel Ortiz

On Mon, Mar 07, 2011 at 11:05:33AM +0800, Axel Lin wrote:
> Since 43cc71eed1250755986da4c0f9898f9a635cb3bf (platform: prefix MODALIAS
> with "platform:"), the platform modalias is prefixed with "platform:".
> 
> Signed-off-by: Axel Lin <axel.lin@gmail.com>

Cc: J Keerthy <j-keerthy@ti.com>
Cc: Samuel Ortiz <sameo@linux.intel.com>

Looks like this fell through the cracks. Applied.

Thanks,
Guenter

> ---
>  drivers/hwmon/twl4030-madc-hwmon.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/drivers/hwmon/twl4030-madc-hwmon.c b/drivers/hwmon/twl4030-madc-hwmon.c
> index 97e22be..de58191 100644
> --- a/drivers/hwmon/twl4030-madc-hwmon.c
> +++ b/drivers/hwmon/twl4030-madc-hwmon.c
> @@ -154,4 +154,4 @@ module_exit(twl4030_madc_hwmon_exit);
>  MODULE_DESCRIPTION("TWL4030 ADC Hwmon driver");
>  MODULE_LICENSE("GPL");
>  MODULE_AUTHOR("J Keerthy");
> -MODULE_ALIAS("twl4030_madc_hwmon");
> +MODULE_ALIAS("platform:twl4030_madc_hwmon");
> -- 
> 1.7.2
> 
> 
> 
> 

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

end of thread, other threads:[~2011-03-28  6:44 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-07  3:02 [PATCH 1/3] mfd: twl4030-madc: add "platform:" prefix for platform modalias Axel Lin
2011-03-07  3:04 ` [PATCH 2/3] mtd: " Axel Lin
2011-03-08 11:01   ` Artem Bityutskiy
2011-03-07  3:05 ` [PATCH 3/3] hwmon: twl4030-madc-hwmon: " Axel Lin
2011-03-08  1:23   ` Guenter Roeck
2011-03-28  6:43   ` Guenter Roeck
2011-03-14 10:23 ` [PATCH 1/3] mfd: twl4030-madc: " Samuel Ortiz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox