Re: [PATCH] NEW EMAC Fix RGMII build error: use of_device_is_compatible

2007-10-15 Thread Benjamin Herrenschmidt

On Fri, 2007-10-12 at 17:04 +0400, Valentine Barshak wrote:
 Fix build RGMII error: use of_device_is_compatible()
 insteadof now deprecated device_is_compatible() function.
 
 Signed-off-by: Valentine Barshak [EMAIL PROTECTED]

Acked-by: Benjamin Herrenschmidt [EMAIL PROTECTED]

 ---
  drivers/net/ibm_newemac/rgmii.c |2 +-
  1 files changed, 1 insertion(+), 1 deletion(-)
 
 diff -pruN linux-2.6.orig/drivers/net/ibm_newemac/rgmii.c 
 linux-2.6/drivers/net/ibm_newemac/rgmii.c
 --- linux-2.6.orig/drivers/net/ibm_newemac/rgmii.c2007-10-12 
 16:02:41.0 +0400
 +++ linux-2.6/drivers/net/ibm_newemac/rgmii.c 2007-10-12 16:49:07.0 
 +0400
 @@ -251,7 +251,7 @@ static int __devinit rgmii_probe(struct 
   }
  
   /* Check for RGMII type */
 - if (device_is_compatible(ofdev-node, ibm,rgmii-axon))
 + if (of_device_is_compatible(ofdev-node, ibm,rgmii-axon))
   dev-type = RGMII_AXON;
   else
   dev-type = RGMII_STANDARD;
 ___
 Linuxppc-dev mailing list
 [EMAIL PROTECTED]
 https://ozlabs.org/mailman/listinfo/linuxppc-dev

-
To unsubscribe from this list: send the line unsubscribe netdev in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH] NEW EMAC Fix RGMII build error: use of_device_is_compatible

2007-10-12 Thread Valentine Barshak
Fix build RGMII error: use of_device_is_compatible()
insteadof now deprecated device_is_compatible() function.

Signed-off-by: Valentine Barshak [EMAIL PROTECTED]
---
 drivers/net/ibm_newemac/rgmii.c |2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

diff -pruN linux-2.6.orig/drivers/net/ibm_newemac/rgmii.c 
linux-2.6/drivers/net/ibm_newemac/rgmii.c
--- linux-2.6.orig/drivers/net/ibm_newemac/rgmii.c  2007-10-12 
16:02:41.0 +0400
+++ linux-2.6/drivers/net/ibm_newemac/rgmii.c   2007-10-12 16:49:07.0 
+0400
@@ -251,7 +251,7 @@ static int __devinit rgmii_probe(struct 
}
 
/* Check for RGMII type */
-   if (device_is_compatible(ofdev-node, ibm,rgmii-axon))
+   if (of_device_is_compatible(ofdev-node, ibm,rgmii-axon))
dev-type = RGMII_AXON;
else
dev-type = RGMII_STANDARD;
-
To unsubscribe from this list: send the line unsubscribe netdev in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH] NEW EMAC Fix RGMII build error: use of_device_is_compatible

2007-10-12 Thread Josh Boyer
On Fri, 2007-10-12 at 17:04 +0400, Valentine Barshak wrote:
 Fix build RGMII error: use of_device_is_compatible()
 insteadof now deprecated device_is_compatible() function.
 
 Signed-off-by: Valentine Barshak [EMAIL PROTECTED]

Acked-by: Josh Boyer [EMAIL PROTECTED]

Jeff, this should go into 2.6.24 please.

josh
 ---
  drivers/net/ibm_newemac/rgmii.c |2 +-
  1 files changed, 1 insertion(+), 1 deletion(-)
 
 diff -pruN linux-2.6.orig/drivers/net/ibm_newemac/rgmii.c 
 linux-2.6/drivers/net/ibm_newemac/rgmii.c
 --- linux-2.6.orig/drivers/net/ibm_newemac/rgmii.c2007-10-12 
 16:02:41.0 +0400
 +++ linux-2.6/drivers/net/ibm_newemac/rgmii.c 2007-10-12 16:49:07.0 
 +0400
 @@ -251,7 +251,7 @@ static int __devinit rgmii_probe(struct 
   }
 
   /* Check for RGMII type */
 - if (device_is_compatible(ofdev-node, ibm,rgmii-axon))
 + if (of_device_is_compatible(ofdev-node, ibm,rgmii-axon))
   dev-type = RGMII_AXON;
   else
   dev-type = RGMII_STANDARD;
 ___
 Linuxppc-dev mailing list
 [EMAIL PROTECTED]
 https://ozlabs.org/mailman/listinfo/linuxppc-dev

-
To unsubscribe from this list: send the line unsubscribe netdev in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html