netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/3] net: ethernet: cpsw: Remove redundant of_match_ptr
@ 2013-09-30  4:25 Sachin Kamat
  2013-09-30  4:25 ` [PATCH 2/3] net: ethernet: cpsw-phy-sel: " Sachin Kamat
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: Sachin Kamat @ 2013-09-30  4:25 UTC (permalink / raw)
  To: netdev; +Cc: davem, sachin.kamat

The data structure of_match_ptr() protects is always compiled in.
Hence of_match_ptr() is not needed.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
 drivers/net/ethernet/ti/cpsw.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/ti/cpsw.c b/drivers/net/ethernet/ti/cpsw.c
index 5efb37b..7290f11 100644
--- a/drivers/net/ethernet/ti/cpsw.c
+++ b/drivers/net/ethernet/ti/cpsw.c
@@ -2217,7 +2217,7 @@ static struct platform_driver cpsw_driver = {
 		.name	 = "cpsw",
 		.owner	 = THIS_MODULE,
 		.pm	 = &cpsw_pm_ops,
-		.of_match_table = of_match_ptr(cpsw_of_mtable),
+		.of_match_table = cpsw_of_mtable,
 	},
 	.probe = cpsw_probe,
 	.remove = cpsw_remove,
-- 
1.7.9.5

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

* [PATCH 2/3] net: ethernet: cpsw-phy-sel: Remove redundant of_match_ptr
  2013-09-30  4:25 [PATCH 1/3] net: ethernet: cpsw: Remove redundant of_match_ptr Sachin Kamat
@ 2013-09-30  4:25 ` Sachin Kamat
  2013-09-30 15:47   ` Mugunthan V N
  2013-10-01 16:34   ` David Miller
  2013-09-30  4:25 ` [PATCH 3/3] net: can: c_can_platform: " Sachin Kamat
                   ` (2 subsequent siblings)
  3 siblings, 2 replies; 9+ messages in thread
From: Sachin Kamat @ 2013-09-30  4:25 UTC (permalink / raw)
  To: netdev; +Cc: davem, sachin.kamat

The data structure of_match_ptr() protects is always compiled in.
Hence of_match_ptr() is not needed.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
 drivers/net/ethernet/ti/cpsw-phy-sel.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/ti/cpsw-phy-sel.c b/drivers/net/ethernet/ti/cpsw-phy-sel.c
index e092ede..148da9a 100644
--- a/drivers/net/ethernet/ti/cpsw-phy-sel.c
+++ b/drivers/net/ethernet/ti/cpsw-phy-sel.c
@@ -152,7 +152,7 @@ static struct platform_driver cpsw_phy_sel_driver = {
 	.driver		= {
 		.name	= "cpsw-phy-sel",
 		.owner	= THIS_MODULE,
-		.of_match_table = of_match_ptr(cpsw_phy_sel_id_table),
+		.of_match_table = cpsw_phy_sel_id_table,
 	},
 };
 
-- 
1.7.9.5

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

* [PATCH 3/3] net: can: c_can_platform: Remove redundant of_match_ptr
  2013-09-30  4:25 [PATCH 1/3] net: ethernet: cpsw: Remove redundant of_match_ptr Sachin Kamat
  2013-09-30  4:25 ` [PATCH 2/3] net: ethernet: cpsw-phy-sel: " Sachin Kamat
@ 2013-09-30  4:25 ` Sachin Kamat
  2013-09-30  8:00   ` Marc Kleine-Budde
  2013-10-01 16:34   ` David Miller
  2013-09-30 15:47 ` [PATCH 1/3] net: ethernet: cpsw: " Mugunthan V N
  2013-10-01 16:34 ` David Miller
  3 siblings, 2 replies; 9+ messages in thread
From: Sachin Kamat @ 2013-09-30  4:25 UTC (permalink / raw)
  To: netdev; +Cc: davem, sachin.kamat, Marc Kleine-Budde, linux-can

The data structure of_match_ptr() protects is always compiled in.
Hence of_match_ptr() is not needed.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: Marc Kleine-Budde <mkl@pengutronix.de>
Cc: linux-can@vger.kernel.org
---
 drivers/net/can/c_can/c_can_platform.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/can/c_can/c_can_platform.c b/drivers/net/can/c_can/c_can_platform.c
index 294ced3..d66ac26 100644
--- a/drivers/net/can/c_can/c_can_platform.c
+++ b/drivers/net/can/c_can/c_can_platform.c
@@ -322,7 +322,7 @@ static struct platform_driver c_can_plat_driver = {
 	.driver = {
 		.name = KBUILD_MODNAME,
 		.owner = THIS_MODULE,
-		.of_match_table = of_match_ptr(c_can_of_table),
+		.of_match_table = c_can_of_table,
 	},
 	.probe = c_can_plat_probe,
 	.remove = c_can_plat_remove,
-- 
1.7.9.5


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

* Re: [PATCH 3/3] net: can: c_can_platform: Remove redundant of_match_ptr
  2013-09-30  4:25 ` [PATCH 3/3] net: can: c_can_platform: " Sachin Kamat
@ 2013-09-30  8:00   ` Marc Kleine-Budde
  2013-10-01 16:34   ` David Miller
  1 sibling, 0 replies; 9+ messages in thread
From: Marc Kleine-Budde @ 2013-09-30  8:00 UTC (permalink / raw)
  To: Sachin Kamat; +Cc: netdev, davem, linux-can

[-- Attachment #1: Type: text/plain, Size: 684 bytes --]

On 09/30/2013 06:25 AM, Sachin Kamat wrote:
> The data structure of_match_ptr() protects is always compiled in.
> Hence of_match_ptr() is not needed.
> 
> Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
> Cc: Marc Kleine-Budde <mkl@pengutronix.de>
> Cc: linux-can@vger.kernel.org

Applied to linux-can-next/testing, it will be included in my next pull
request to David Miller.

tnx,
Marc

-- 
Pengutronix e.K.                  | Marc Kleine-Budde           |
Industrial Linux Solutions        | Phone: +49-231-2826-924     |
Vertretung West/Dortmund          | Fax:   +49-5121-206917-5555 |
Amtsgericht Hildesheim, HRA 2686  | http://www.pengutronix.de   |


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 259 bytes --]

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

* Re: [PATCH 1/3] net: ethernet: cpsw: Remove redundant of_match_ptr
  2013-09-30  4:25 [PATCH 1/3] net: ethernet: cpsw: Remove redundant of_match_ptr Sachin Kamat
  2013-09-30  4:25 ` [PATCH 2/3] net: ethernet: cpsw-phy-sel: " Sachin Kamat
  2013-09-30  4:25 ` [PATCH 3/3] net: can: c_can_platform: " Sachin Kamat
@ 2013-09-30 15:47 ` Mugunthan V N
  2013-10-01 16:34 ` David Miller
  3 siblings, 0 replies; 9+ messages in thread
From: Mugunthan V N @ 2013-09-30 15:47 UTC (permalink / raw)
  To: Sachin Kamat, netdev; +Cc: davem

On Sunday 29 September 2013 11:25 PM, Sachin Kamat wrote:
> The data structure of_match_ptr() protects is always compiled in.
> Hence of_match_ptr() is not needed.
>
> Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Acked-by: Mugunthan V N <mugunthanvnm@ti.com>

Regards
Mugunthan V N

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

* Re: [PATCH 2/3] net: ethernet: cpsw-phy-sel: Remove redundant of_match_ptr
  2013-09-30  4:25 ` [PATCH 2/3] net: ethernet: cpsw-phy-sel: " Sachin Kamat
@ 2013-09-30 15:47   ` Mugunthan V N
  2013-10-01 16:34   ` David Miller
  1 sibling, 0 replies; 9+ messages in thread
From: Mugunthan V N @ 2013-09-30 15:47 UTC (permalink / raw)
  To: Sachin Kamat, netdev; +Cc: davem

On Sunday 29 September 2013 11:25 PM, Sachin Kamat wrote:
> The data structure of_match_ptr() protects is always compiled in.
> Hence of_match_ptr() is not needed.
>
> Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Acked-by: Mugunthan V N <mugunthanvnm@ti.com>

Regards
Mugunthan V N

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

* Re: [PATCH 1/3] net: ethernet: cpsw: Remove redundant of_match_ptr
  2013-09-30  4:25 [PATCH 1/3] net: ethernet: cpsw: Remove redundant of_match_ptr Sachin Kamat
                   ` (2 preceding siblings ...)
  2013-09-30 15:47 ` [PATCH 1/3] net: ethernet: cpsw: " Mugunthan V N
@ 2013-10-01 16:34 ` David Miller
  3 siblings, 0 replies; 9+ messages in thread
From: David Miller @ 2013-10-01 16:34 UTC (permalink / raw)
  To: sachin.kamat; +Cc: netdev

From: Sachin Kamat <sachin.kamat@linaro.org>
Date: Mon, 30 Sep 2013 09:55:12 +0530

> The data structure of_match_ptr() protects is always compiled in.
> Hence of_match_ptr() is not needed.
> 
> Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>

Applied.

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

* Re: [PATCH 2/3] net: ethernet: cpsw-phy-sel: Remove redundant of_match_ptr
  2013-09-30  4:25 ` [PATCH 2/3] net: ethernet: cpsw-phy-sel: " Sachin Kamat
  2013-09-30 15:47   ` Mugunthan V N
@ 2013-10-01 16:34   ` David Miller
  1 sibling, 0 replies; 9+ messages in thread
From: David Miller @ 2013-10-01 16:34 UTC (permalink / raw)
  To: sachin.kamat; +Cc: netdev

From: Sachin Kamat <sachin.kamat@linaro.org>
Date: Mon, 30 Sep 2013 09:55:13 +0530

> The data structure of_match_ptr() protects is always compiled in.
> Hence of_match_ptr() is not needed.
> 
> Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>

Applied.

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

* Re: [PATCH 3/3] net: can: c_can_platform: Remove redundant of_match_ptr
  2013-09-30  4:25 ` [PATCH 3/3] net: can: c_can_platform: " Sachin Kamat
  2013-09-30  8:00   ` Marc Kleine-Budde
@ 2013-10-01 16:34   ` David Miller
  1 sibling, 0 replies; 9+ messages in thread
From: David Miller @ 2013-10-01 16:34 UTC (permalink / raw)
  To: sachin.kamat; +Cc: netdev, mkl, linux-can

From: Sachin Kamat <sachin.kamat@linaro.org>
Date: Mon, 30 Sep 2013 09:55:14 +0530

> The data structure of_match_ptr() protects is always compiled in.
> Hence of_match_ptr() is not needed.
> 
> Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>

Applied.

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

end of thread, other threads:[~2013-10-01 16:34 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-30  4:25 [PATCH 1/3] net: ethernet: cpsw: Remove redundant of_match_ptr Sachin Kamat
2013-09-30  4:25 ` [PATCH 2/3] net: ethernet: cpsw-phy-sel: " Sachin Kamat
2013-09-30 15:47   ` Mugunthan V N
2013-10-01 16:34   ` David Miller
2013-09-30  4:25 ` [PATCH 3/3] net: can: c_can_platform: " Sachin Kamat
2013-09-30  8:00   ` Marc Kleine-Budde
2013-10-01 16:34   ` David Miller
2013-09-30 15:47 ` [PATCH 1/3] net: ethernet: cpsw: " Mugunthan V N
2013-10-01 16:34 ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).