From: Grant Likely <grant.likely@secretlab.ca>
To: monstr@monstr.eu, gregkh@suse.de, benh@kernel.crashing.org,
akpm@linux-foundation.org, davem@davemloft.net,
sfr@canb.auug.org.au, jgarzik@pobox.com, ben-linux@fluff.org,
dwmw2@infrade
Subject: [PATCH 12/27] drivers/mtd/of: don't use deprecated field in of_platform_driver
Date: Thu, 11 Mar 2010 11:22:54 -0700 [thread overview]
Message-ID: <20100311182253.13103.92479.stgit@angua> (raw)
In-Reply-To: <20100311181604.13103.30088.stgit@angua>
.name, .match_table and .owner are duplicated in both of_platform_driver
and device_driver, so the of_platform_driver copies will be removed soon.
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
---
drivers/mtd/maps/physmap_of.c | 7 +++++--
drivers/mtd/maps/sun_uflash.c | 7 +++++--
drivers/mtd/nand/fsl_elbc_nand.c | 5 +++--
drivers/mtd/nand/fsl_upm.c | 7 +++++--
drivers/mtd/nand/ndfc.c | 5 +++--
drivers/mtd/nand/pasemi_nand.c | 7 +++++--
drivers/mtd/nand/socrates_nand.c | 7 +++++--
7 files changed, 31 insertions(+), 14 deletions(-)
diff --git a/drivers/mtd/maps/physmap_of.c b/drivers/mtd/maps/physmap_of.c
index 494af8e..997ee62 100644
--- a/drivers/mtd/maps/physmap_of.c
+++ b/drivers/mtd/maps/physmap_of.c
@@ -374,8 +374,11 @@ static struct of_device_id of_flash_match[] = {
MODULE_DEVICE_TABLE(of, of_flash_match);
static struct of_platform_driver of_flash_driver = {
- .name = "of-flash",
- .match_table = of_flash_match,
+ .driver = {
+ .name = "of-flash",
+ .owner = THIS_MODULE,
+ .of_match_table = of_flash_match,
+ },
.probe = of_flash_probe,
.remove = of_flash_remove,
};
diff --git a/drivers/mtd/maps/sun_uflash.c b/drivers/mtd/maps/sun_uflash.c
index 365811d..b27be02 100644
--- a/drivers/mtd/maps/sun_uflash.c
+++ b/drivers/mtd/maps/sun_uflash.c
@@ -148,8 +148,11 @@ static const struct of_device_id uflash_match[] = {
MODULE_DEVICE_TABLE(of, uflash_match);
static struct of_platform_driver uflash_driver = {
- .name = DRIVER_NAME,
- .match_table = uflash_match,
+ .driver = {
+ .name = DRIVER_NAME,
+ .owner = THIS_MODULE,
+ .of_match_table = uflash_match,
+ },
.probe = uflash_probe,
.remove = __devexit_p(uflash_remove),
};
diff --git a/drivers/mtd/nand/fsl_elbc_nand.c b/drivers/mtd/nand/fsl_elbc_nand.c
index 4a60795..f45a8d0 100644
--- a/drivers/mtd/nand/fsl_elbc_nand.c
+++ b/drivers/mtd/nand/fsl_elbc_nand.c
@@ -1078,9 +1078,10 @@ static const struct of_device_id fsl_elbc_match[] = {
static struct of_platform_driver fsl_elbc_ctrl_driver = {
.driver = {
- .name = "fsl-elbc",
+ .name = "fsl-elbc",
+ .owner = THIS_MODULE,
+ .of_match_table = fsl_elbc_match,
},
- .match_table = fsl_elbc_match,
.probe = fsl_elbc_ctrl_probe,
.remove = fsl_elbc_ctrl_remove,
};
diff --git a/drivers/mtd/nand/fsl_upm.c b/drivers/mtd/nand/fsl_upm.c
index 071a60c..8dcbb18 100644
--- a/drivers/mtd/nand/fsl_upm.c
+++ b/drivers/mtd/nand/fsl_upm.c
@@ -356,8 +356,11 @@ static struct of_device_id of_fun_match[] = {
MODULE_DEVICE_TABLE(of, of_fun_match);
static struct of_platform_driver of_fun_driver = {
- .name = "fsl,upm-nand",
- .match_table = of_fun_match,
+ .driver = {
+ .name = "fsl,upm-nand",
+ .owner = THIS_MODULE,
+ .of_match_table = of_fun_match,
+ },
.probe = fun_probe,
.remove = __devexit_p(fun_remove),
};
diff --git a/drivers/mtd/nand/ndfc.c b/drivers/mtd/nand/ndfc.c
index 40b5658..19d94a2 100644
--- a/drivers/mtd/nand/ndfc.c
+++ b/drivers/mtd/nand/ndfc.c
@@ -293,9 +293,10 @@ MODULE_DEVICE_TABLE(of, ndfc_match);
static struct of_platform_driver ndfc_driver = {
.driver = {
- .name = "ndfc",
+ .name = "ndfc",
+ .owner = THIS_MODULE,
+ .of_match_table = ndfc_match,
},
- .match_table = ndfc_match,
.probe = ndfc_probe,
.remove = __devexit_p(ndfc_remove),
};
diff --git a/drivers/mtd/nand/pasemi_nand.c b/drivers/mtd/nand/pasemi_nand.c
index edfc27b..a97e9c9 100644
--- a/drivers/mtd/nand/pasemi_nand.c
+++ b/drivers/mtd/nand/pasemi_nand.c
@@ -221,8 +221,11 @@ MODULE_DEVICE_TABLE(of, pasemi_nand_match);
static struct of_platform_driver pasemi_nand_driver =
{
- .name = (char*)driver_name,
- .match_table = pasemi_nand_match,
+ .driver = {
+ .name = (char*)driver_name,
+ .owner = THIS_MODULE,
+ .of_match_table = pasemi_nand_match,
+ },
.probe = pasemi_nand_probe,
.remove = pasemi_nand_remove,
};
diff --git a/drivers/mtd/nand/socrates_nand.c b/drivers/mtd/nand/socrates_nand.c
index a4519a7..edb9b13 100644
--- a/drivers/mtd/nand/socrates_nand.c
+++ b/drivers/mtd/nand/socrates_nand.c
@@ -301,8 +301,11 @@ static struct of_device_id socrates_nand_match[] =
MODULE_DEVICE_TABLE(of, socrates_nand_match);
static struct of_platform_driver socrates_nand_driver = {
- .name = "socrates_nand",
- .match_table = socrates_nand_match,
+ .driver = {
+ .name = "socrates_nand",
+ .owner = THIS_MODULE,
+ .of_match_table = socrates_nand_match,
+ },
.probe = socrates_nand_probe,
.remove = __devexit_p(socrates_nand_remove),
};
WARNING: multiple messages have this Message-ID (diff)
From: Grant Likely <grant.likely@secretlab.ca>
To: monstr@monstr.eu, gregkh@suse.de, benh@kernel.crashing.org,
akpm@linux-foundation.org, davem@davemloft.net,
sfr@canb.auug.org.au, jgarzik@pobox.com, ben-linux@fluff.org,
dwmw2@infradead.org, jeremy.kerr@canonical.com,
James.Bottomley@suse.de, broonie@opensource.wolfsonmicro.com,
microblaze-uclinux@itee.uq.edu.au, linux-kernel@vger.kernel.org,
linuxppc-dev@ozlabs.org, sparclinux@vger.kernel.org,
linux-ide@vger.kernel.org, netdev@vger.kernel.org,
linux-i2c@vger.kernel.org, devicetree-discuss@lists.ozlabs.org,
linux-scsi@vger.kernel.org, alsa-devel@alsa-project.org
Subject: [PATCH 12/27] drivers/mtd/of: don't use deprecated field in of_platform_driver
Date: Thu, 11 Mar 2010 11:22:54 -0700 [thread overview]
Message-ID: <20100311182253.13103.92479.stgit@angua> (raw)
In-Reply-To: <20100311181604.13103.30088.stgit@angua>
.name, .match_table and .owner are duplicated in both of_platform_driver
and device_driver, so the of_platform_driver copies will be removed soon.
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
---
drivers/mtd/maps/physmap_of.c | 7 +++++--
drivers/mtd/maps/sun_uflash.c | 7 +++++--
drivers/mtd/nand/fsl_elbc_nand.c | 5 +++--
drivers/mtd/nand/fsl_upm.c | 7 +++++--
drivers/mtd/nand/ndfc.c | 5 +++--
drivers/mtd/nand/pasemi_nand.c | 7 +++++--
drivers/mtd/nand/socrates_nand.c | 7 +++++--
7 files changed, 31 insertions(+), 14 deletions(-)
diff --git a/drivers/mtd/maps/physmap_of.c b/drivers/mtd/maps/physmap_of.c
index 494af8e..997ee62 100644
--- a/drivers/mtd/maps/physmap_of.c
+++ b/drivers/mtd/maps/physmap_of.c
@@ -374,8 +374,11 @@ static struct of_device_id of_flash_match[] = {
MODULE_DEVICE_TABLE(of, of_flash_match);
static struct of_platform_driver of_flash_driver = {
- .name = "of-flash",
- .match_table = of_flash_match,
+ .driver = {
+ .name = "of-flash",
+ .owner = THIS_MODULE,
+ .of_match_table = of_flash_match,
+ },
.probe = of_flash_probe,
.remove = of_flash_remove,
};
diff --git a/drivers/mtd/maps/sun_uflash.c b/drivers/mtd/maps/sun_uflash.c
index 365811d..b27be02 100644
--- a/drivers/mtd/maps/sun_uflash.c
+++ b/drivers/mtd/maps/sun_uflash.c
@@ -148,8 +148,11 @@ static const struct of_device_id uflash_match[] = {
MODULE_DEVICE_TABLE(of, uflash_match);
static struct of_platform_driver uflash_driver = {
- .name = DRIVER_NAME,
- .match_table = uflash_match,
+ .driver = {
+ .name = DRIVER_NAME,
+ .owner = THIS_MODULE,
+ .of_match_table = uflash_match,
+ },
.probe = uflash_probe,
.remove = __devexit_p(uflash_remove),
};
diff --git a/drivers/mtd/nand/fsl_elbc_nand.c b/drivers/mtd/nand/fsl_elbc_nand.c
index 4a60795..f45a8d0 100644
--- a/drivers/mtd/nand/fsl_elbc_nand.c
+++ b/drivers/mtd/nand/fsl_elbc_nand.c
@@ -1078,9 +1078,10 @@ static const struct of_device_id fsl_elbc_match[] = {
static struct of_platform_driver fsl_elbc_ctrl_driver = {
.driver = {
- .name = "fsl-elbc",
+ .name = "fsl-elbc",
+ .owner = THIS_MODULE,
+ .of_match_table = fsl_elbc_match,
},
- .match_table = fsl_elbc_match,
.probe = fsl_elbc_ctrl_probe,
.remove = fsl_elbc_ctrl_remove,
};
diff --git a/drivers/mtd/nand/fsl_upm.c b/drivers/mtd/nand/fsl_upm.c
index 071a60c..8dcbb18 100644
--- a/drivers/mtd/nand/fsl_upm.c
+++ b/drivers/mtd/nand/fsl_upm.c
@@ -356,8 +356,11 @@ static struct of_device_id of_fun_match[] = {
MODULE_DEVICE_TABLE(of, of_fun_match);
static struct of_platform_driver of_fun_driver = {
- .name = "fsl,upm-nand",
- .match_table = of_fun_match,
+ .driver = {
+ .name = "fsl,upm-nand",
+ .owner = THIS_MODULE,
+ .of_match_table = of_fun_match,
+ },
.probe = fun_probe,
.remove = __devexit_p(fun_remove),
};
diff --git a/drivers/mtd/nand/ndfc.c b/drivers/mtd/nand/ndfc.c
index 40b5658..19d94a2 100644
--- a/drivers/mtd/nand/ndfc.c
+++ b/drivers/mtd/nand/ndfc.c
@@ -293,9 +293,10 @@ MODULE_DEVICE_TABLE(of, ndfc_match);
static struct of_platform_driver ndfc_driver = {
.driver = {
- .name = "ndfc",
+ .name = "ndfc",
+ .owner = THIS_MODULE,
+ .of_match_table = ndfc_match,
},
- .match_table = ndfc_match,
.probe = ndfc_probe,
.remove = __devexit_p(ndfc_remove),
};
diff --git a/drivers/mtd/nand/pasemi_nand.c b/drivers/mtd/nand/pasemi_nand.c
index edfc27b..a97e9c9 100644
--- a/drivers/mtd/nand/pasemi_nand.c
+++ b/drivers/mtd/nand/pasemi_nand.c
@@ -221,8 +221,11 @@ MODULE_DEVICE_TABLE(of, pasemi_nand_match);
static struct of_platform_driver pasemi_nand_driver =
{
- .name = (char*)driver_name,
- .match_table = pasemi_nand_match,
+ .driver = {
+ .name = (char*)driver_name,
+ .owner = THIS_MODULE,
+ .of_match_table = pasemi_nand_match,
+ },
.probe = pasemi_nand_probe,
.remove = pasemi_nand_remove,
};
diff --git a/drivers/mtd/nand/socrates_nand.c b/drivers/mtd/nand/socrates_nand.c
index a4519a7..edb9b13 100644
--- a/drivers/mtd/nand/socrates_nand.c
+++ b/drivers/mtd/nand/socrates_nand.c
@@ -301,8 +301,11 @@ static struct of_device_id socrates_nand_match[] =
MODULE_DEVICE_TABLE(of, socrates_nand_match);
static struct of_platform_driver socrates_nand_driver = {
- .name = "socrates_nand",
- .match_table = socrates_nand_match,
+ .driver = {
+ .name = "socrates_nand",
+ .owner = THIS_MODULE,
+ .of_match_table = socrates_nand_match,
+ },
.probe = socrates_nand_probe,
.remove = __devexit_p(socrates_nand_remove),
};
WARNING: multiple messages have this Message-ID (diff)
From: Grant Likely <grant.likely@secretlab.ca>
To: monstr@monstr.eu, gregkh@suse.de, benh@kernel.crashing.org,
akpm@linux-foundation.org, davem@davemloft.net,
sfr@canb.auug.org.au, jgarzik@pobox.com, ben-linux@fluff.org,
dwmw2@infrade
Subject: [PATCH 12/27] drivers/mtd/of: don't use deprecated field in
Date: Thu, 11 Mar 2010 18:22:54 +0000 [thread overview]
Message-ID: <20100311182253.13103.92479.stgit@angua> (raw)
In-Reply-To: <20100311181604.13103.30088.stgit@angua>
.name, .match_table and .owner are duplicated in both of_platform_driver
and device_driver, so the of_platform_driver copies will be removed soon.
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
---
drivers/mtd/maps/physmap_of.c | 7 +++++--
drivers/mtd/maps/sun_uflash.c | 7 +++++--
drivers/mtd/nand/fsl_elbc_nand.c | 5 +++--
drivers/mtd/nand/fsl_upm.c | 7 +++++--
drivers/mtd/nand/ndfc.c | 5 +++--
drivers/mtd/nand/pasemi_nand.c | 7 +++++--
drivers/mtd/nand/socrates_nand.c | 7 +++++--
7 files changed, 31 insertions(+), 14 deletions(-)
diff --git a/drivers/mtd/maps/physmap_of.c b/drivers/mtd/maps/physmap_of.c
index 494af8e..997ee62 100644
--- a/drivers/mtd/maps/physmap_of.c
+++ b/drivers/mtd/maps/physmap_of.c
@@ -374,8 +374,11 @@ static struct of_device_id of_flash_match[] = {
MODULE_DEVICE_TABLE(of, of_flash_match);
static struct of_platform_driver of_flash_driver = {
- .name = "of-flash",
- .match_table = of_flash_match,
+ .driver = {
+ .name = "of-flash",
+ .owner = THIS_MODULE,
+ .of_match_table = of_flash_match,
+ },
.probe = of_flash_probe,
.remove = of_flash_remove,
};
diff --git a/drivers/mtd/maps/sun_uflash.c b/drivers/mtd/maps/sun_uflash.c
index 365811d..b27be02 100644
--- a/drivers/mtd/maps/sun_uflash.c
+++ b/drivers/mtd/maps/sun_uflash.c
@@ -148,8 +148,11 @@ static const struct of_device_id uflash_match[] = {
MODULE_DEVICE_TABLE(of, uflash_match);
static struct of_platform_driver uflash_driver = {
- .name = DRIVER_NAME,
- .match_table = uflash_match,
+ .driver = {
+ .name = DRIVER_NAME,
+ .owner = THIS_MODULE,
+ .of_match_table = uflash_match,
+ },
.probe = uflash_probe,
.remove = __devexit_p(uflash_remove),
};
diff --git a/drivers/mtd/nand/fsl_elbc_nand.c b/drivers/mtd/nand/fsl_elbc_nand.c
index 4a60795..f45a8d0 100644
--- a/drivers/mtd/nand/fsl_elbc_nand.c
+++ b/drivers/mtd/nand/fsl_elbc_nand.c
@@ -1078,9 +1078,10 @@ static const struct of_device_id fsl_elbc_match[] = {
static struct of_platform_driver fsl_elbc_ctrl_driver = {
.driver = {
- .name = "fsl-elbc",
+ .name = "fsl-elbc",
+ .owner = THIS_MODULE,
+ .of_match_table = fsl_elbc_match,
},
- .match_table = fsl_elbc_match,
.probe = fsl_elbc_ctrl_probe,
.remove = fsl_elbc_ctrl_remove,
};
diff --git a/drivers/mtd/nand/fsl_upm.c b/drivers/mtd/nand/fsl_upm.c
index 071a60c..8dcbb18 100644
--- a/drivers/mtd/nand/fsl_upm.c
+++ b/drivers/mtd/nand/fsl_upm.c
@@ -356,8 +356,11 @@ static struct of_device_id of_fun_match[] = {
MODULE_DEVICE_TABLE(of, of_fun_match);
static struct of_platform_driver of_fun_driver = {
- .name = "fsl,upm-nand",
- .match_table = of_fun_match,
+ .driver = {
+ .name = "fsl,upm-nand",
+ .owner = THIS_MODULE,
+ .of_match_table = of_fun_match,
+ },
.probe = fun_probe,
.remove = __devexit_p(fun_remove),
};
diff --git a/drivers/mtd/nand/ndfc.c b/drivers/mtd/nand/ndfc.c
index 40b5658..19d94a2 100644
--- a/drivers/mtd/nand/ndfc.c
+++ b/drivers/mtd/nand/ndfc.c
@@ -293,9 +293,10 @@ MODULE_DEVICE_TABLE(of, ndfc_match);
static struct of_platform_driver ndfc_driver = {
.driver = {
- .name = "ndfc",
+ .name = "ndfc",
+ .owner = THIS_MODULE,
+ .of_match_table = ndfc_match,
},
- .match_table = ndfc_match,
.probe = ndfc_probe,
.remove = __devexit_p(ndfc_remove),
};
diff --git a/drivers/mtd/nand/pasemi_nand.c b/drivers/mtd/nand/pasemi_nand.c
index edfc27b..a97e9c9 100644
--- a/drivers/mtd/nand/pasemi_nand.c
+++ b/drivers/mtd/nand/pasemi_nand.c
@@ -221,8 +221,11 @@ MODULE_DEVICE_TABLE(of, pasemi_nand_match);
static struct of_platform_driver pasemi_nand_driver {
- .name = (char*)driver_name,
- .match_table = pasemi_nand_match,
+ .driver = {
+ .name = (char*)driver_name,
+ .owner = THIS_MODULE,
+ .of_match_table = pasemi_nand_match,
+ },
.probe = pasemi_nand_probe,
.remove = pasemi_nand_remove,
};
diff --git a/drivers/mtd/nand/socrates_nand.c b/drivers/mtd/nand/socrates_nand.c
index a4519a7..edb9b13 100644
--- a/drivers/mtd/nand/socrates_nand.c
+++ b/drivers/mtd/nand/socrates_nand.c
@@ -301,8 +301,11 @@ static struct of_device_id socrates_nand_match[] MODULE_DEVICE_TABLE(of, socrates_nand_match);
static struct of_platform_driver socrates_nand_driver = {
- .name = "socrates_nand",
- .match_table = socrates_nand_match,
+ .driver = {
+ .name = "socrates_nand",
+ .owner = THIS_MODULE,
+ .of_match_table = socrates_nand_match,
+ },
.probe = socrates_nand_probe,
.remove = __devexit_p(socrates_nand_remove),
};
next prev parent reply other threads:[~2010-03-11 18:22 UTC|newest]
Thread overview: 206+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-03-11 18:21 [PATCH 00/27] Clean up of_platform drivers Grant Likely
2010-03-11 18:21 ` Grant Likely
2010-03-11 18:21 ` Grant Likely
2010-03-11 18:21 ` [PATCH 01/27] drivercore: Add of_match_table to the common device drivers Grant Likely
2010-03-11 18:21 ` Grant Likely
2010-03-11 18:21 ` Grant Likely
2010-03-11 18:21 ` [PATCH 01/27] drivercore: Add of_match_table to the common device Grant Likely
2010-03-11 18:21 ` [PATCH 01/27] drivercore: Add of_match_table to the common device drivers Grant Likely
2010-03-11 18:21 ` Grant Likely
2010-03-11 18:21 ` Grant Likely
2010-03-11 18:21 ` [PATCH 02/27] drivers/gpio/of: don't use deprecated fields in of_platform_driver Grant Likely
2010-03-11 18:21 ` Grant Likely
2010-03-11 18:21 ` [PATCH 02/27] drivers/gpio/of: don't use deprecated fields in Grant Likely
2010-03-11 18:21 ` [PATCH 02/27] drivers/gpio/of: don't use deprecated fields in of_platform_driver Grant Likely
2010-03-11 18:21 ` Grant Likely
2010-03-11 18:21 ` Grant Likely
2010-03-11 18:21 ` Grant Likely
2010-03-11 18:22 ` [PATCH 03/27] drivers/watchdog/of: don't use deprecated .name and .owner " Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` [PATCH 03/27] drivers/watchdog/of: don't use deprecated .name and Grant Likely
2010-03-11 18:22 ` [PATCH 03/27] drivers/watchdog/of: don't use deprecated .name and .owner in of_platform_driver Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` [PATCH 04/27] drivers/video/of: don't use deprecated field " Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` [PATCH 04/27] drivers/video/of: don't use deprecated field in Grant Likely
2010-03-11 18:22 ` [PATCH 04/27] drivers/video/of: don't use deprecated field in of_platform_driver Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` [PATCH 05/27] drivers/usb/of: " Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` [PATCH 05/27] drivers/usb/of: don't use deprecated field in Grant Likely
2010-03-11 18:22 ` [PATCH 05/27] drivers/usb/of: don't use deprecated field in of_platform_driver Grant Likely
2010-03-11 18:28 ` Greg KH
2010-03-11 18:28 ` [PATCH 05/27] drivers/usb/of: don't use deprecated field in Greg KH
2010-03-11 18:28 ` [PATCH 05/27] drivers/usb/of: don't use deprecated field in of_platform_driver Greg KH
2010-03-11 18:22 ` [PATCH 06/27] drivers/block/of: " Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` [PATCH 06/27] drivers/block/of: don't use deprecated field in Grant Likely
2010-03-11 18:22 ` [PATCH 06/27] drivers/block/of: don't use deprecated field in of_platform_driver Grant Likely
2010-03-11 18:22 ` [PATCH 07/27] drivers/char/of: " Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` [PATCH 07/27] drivers/char/of: don't use deprecated field in Grant Likely
2010-03-11 18:22 ` [PATCH 07/27] drivers/char/of: don't use deprecated field in of_platform_driver Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` [PATCH 08/27] drivers/crypto/of: " Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` [PATCH 08/27] drivers/crypto/of: don't use deprecated field in Grant Likely
2010-03-11 18:22 ` [PATCH 08/27] drivers/crypto/of: don't use deprecated field in of_platform_driver Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` [PATCH 09/27] drivers/atm/of: " Grant Likely
2010-03-11 18:22 ` [PATCH 09/27] drivers/atm/of: don't use deprecated field in Grant Likely
2010-03-11 18:22 ` [PATCH 09/27] drivers/atm/of: don't use deprecated field in of_platform_driver Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` [PATCH 10/27] drivers/input/of: " Grant Likely
2010-03-11 18:22 ` [PATCH 10/27] drivers/input/of: don't use deprecated field in Grant Likely
2010-03-11 18:22 ` [PATCH 10/27] drivers/input/of: don't use deprecated field in of_platform_driver Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` [PATCH 11/27] drivers/macintosh/of: " Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` [PATCH 11/27] drivers/macintosh/of: don't use deprecated field in Grant Likely
2010-03-11 18:22 ` [PATCH 11/27] drivers/macintosh/of: don't use deprecated field in of_platform_driver Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` [PATCH 12/27] drivers/mtd/of: " Grant Likely
2010-03-11 18:22 ` Grant Likely [this message]
2010-03-11 18:22 ` [PATCH 12/27] drivers/mtd/of: don't use deprecated field in Grant Likely
2010-03-11 18:22 ` [PATCH 12/27] drivers/mtd/of: don't use deprecated field in of_platform_driver Grant Likely
2010-03-12 17:31 ` Sean MacLennan
2010-03-12 17:31 ` Sean MacLennan
2010-03-12 17:31 ` [PATCH 12/27] drivers/mtd/of: don't use deprecated field in Sean MacLennan
2010-03-11 18:22 ` [PATCH 12/27] drivers/mtd/of: don't use deprecated field in of_platform_driver Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:22 ` Grant Likely
2010-03-11 18:23 ` [PATCH 13/27] drivers/net/of: " Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` [PATCH 13/27] drivers/net/of: don't use deprecated field in Grant Likely
2010-03-11 18:23 ` [PATCH 13/27] drivers/net/of: don't use deprecated field in of_platform_driver Grant Likely
2010-03-26 15:23 ` [alsa-devel] " Timur Tabi
[not found] ` <ed82fe3e1003260823q5a2ba774ifd3465b41b8f0a10-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2010-03-26 18:23 ` Grant Likely
2010-03-11 18:23 ` [PATCH 14/27] drivers/serial/of: " Grant Likely
2010-03-11 18:23 ` [PATCH 14/27] drivers/serial/of: don't use deprecated field in Grant Likely
2010-03-11 18:23 ` [PATCH 14/27] drivers/serial/of: don't use deprecated field in of_platform_driver Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` [PATCH 15/27] drivers/spi/of: " Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` [PATCH 15/27] drivers/spi/of: don't use deprecated field in Grant Likely
2010-03-11 18:23 ` [PATCH 15/27] drivers/spi/of: don't use deprecated field in of_platform_driver Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` [PATCH 16/27] drivers/scsi/of: " Grant Likely
2010-03-11 18:23 ` [PATCH 16/27] drivers/scsi/of: don't use deprecated field in Grant Likely
2010-03-11 18:23 ` [PATCH 16/27] drivers/scsi/of: don't use deprecated field in of_platform_driver Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` [PATCH 17/27] drivers/sbus/of: " Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` [PATCH 17/27] drivers/sbus/of: don't use deprecated field in Grant Likely
2010-03-11 18:23 ` [PATCH 17/27] drivers/sbus/of: don't use deprecated field in of_platform_driver Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` [PATCH 18/27] drivers/parport/of: " Grant Likely
2010-03-11 18:23 ` [PATCH 18/27] drivers/parport/of: don't use deprecated field in Grant Likely
2010-03-11 18:23 ` [PATCH 18/27] drivers/parport/of: don't use deprecated field in of_platform_driver Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` [PATCH 19/27] drivers/pcmcia/of: " Grant Likely
2010-03-11 18:23 ` [PATCH 19/27] drivers/pcmcia/of: don't use deprecated field in Grant Likely
2010-03-11 18:23 ` [PATCH 19/27] drivers/pcmcia/of: don't use deprecated field in of_platform_driver Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` [PATCH 20/27] drivers/mmc/of: " Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` [PATCH 20/27] drivers/mmc/of: don't use deprecated field in Grant Likely
2010-03-11 18:23 ` [PATCH 21/27] drivers/hwmon/of: don't use deprecated field in of_platform_driver Grant Likely
2010-03-11 18:23 ` [PATCH 21/27] drivers/hwmon/of: don't use deprecated field in Grant Likely
2010-03-11 18:23 ` [PATCH 21/27] drivers/hwmon/of: don't use deprecated field in of_platform_driver Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` [PATCH 22/27] drivers/i2c/of: " Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` [PATCH 22/27] drivers/i2c/of: don't use deprecated field in Grant Likely
2010-03-11 18:23 ` [PATCH 22/27] drivers/i2c/of: don't use deprecated field in of_platform_driver Grant Likely
2010-03-12 17:31 ` Sean MacLennan
2010-03-12 17:31 ` Sean MacLennan
2010-03-12 17:31 ` [PATCH 22/27] drivers/i2c/of: don't use deprecated field in Sean MacLennan
2010-03-11 18:23 ` [PATCH 22/27] drivers/i2c/of: don't use deprecated field in of_platform_driver Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` [PATCH 23/27] drivers/infiniband/of: don't use deprecated fields " Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` Grant Likely
2010-03-11 18:23 ` [PATCH 23/27] drivers/infiniband/of: don't use deprecated fields in Grant Likely
2010-03-11 18:24 ` [PATCH 24/27] sound/of: don't use deprecated fields in of_platform_driver Grant Likely
2010-03-11 18:24 ` [PATCH 24/27] sound/of: don't use deprecated fields in Grant Likely
2010-03-11 18:24 ` [PATCH 24/27] sound/of: don't use deprecated fields in of_platform_driver Grant Likely
2010-03-11 18:24 ` Grant Likely
2010-03-11 18:24 ` Grant Likely
2010-03-11 18:24 ` Grant Likely
2010-03-11 18:24 ` Grant Likely
2010-03-11 18:24 ` [PATCH 25/27] arch/powerpc/of: don't use deprecated field " Grant Likely
2010-03-11 18:24 ` Grant Likely
2010-03-11 18:24 ` Grant Likely
2010-03-11 18:24 ` Grant Likely
2010-03-11 18:24 ` Grant Likely
2010-03-11 18:24 ` [PATCH 25/27] arch/powerpc/of: don't use deprecated field in Grant Likely
2010-03-11 18:24 ` [PATCH 25/27] arch/powerpc/of: don't use deprecated field in of_platform_driver Grant Likely
2010-03-11 18:24 ` [PATCH 26/27] arch/sparc/of: " Grant Likely
2010-03-11 18:24 ` Grant Likely
2010-03-11 18:24 ` [PATCH 26/27] arch/sparc/of: don't use deprecated field in Grant Likely
2010-03-11 18:24 ` [PATCH 26/27] arch/sparc/of: don't use deprecated field in of_platform_driver Grant Likely
2010-03-11 18:24 ` Grant Likely
2010-03-11 18:24 ` Grant Likely
2010-03-11 18:24 ` Grant Likely
2010-03-11 18:24 ` [PATCH 27/27] of: remove obsolete members from of_platform_driver Grant Likely
2010-03-11 18:24 ` Grant Likely
2010-03-11 18:24 ` Grant Likely
2010-03-11 18:24 ` Grant Likely
2010-03-11 18:24 ` Grant Likely
2010-03-11 18:24 ` Grant Likely
2010-03-11 18:24 ` Grant Likely
2010-03-11 18:26 ` [PATCH 00/27] Clean up of_platform drivers David Miller
2010-03-11 18:26 ` David Miller
2010-03-11 18:26 ` David Miller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20100311182253.13103.92479.stgit@angua \
--to=grant.likely@secretlab.ca \
--cc=akpm@linux-foundation.org \
--cc=ben-linux@fluff.org \
--cc=benh@kernel.crashing.org \
--cc=davem@davemloft.net \
--cc=dwmw2@infrade \
--cc=gregkh@suse.de \
--cc=jgarzik@pobox.com \
--cc=monstr@monstr.eu \
--cc=sfr@canb.auug.org.au \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.