* [PATCH] phy devices: use same arg types
@ 2007-02-05 18:44 Randy Dunlap
2007-02-08 23:25 ` Andy Fleming
2007-02-09 21:35 ` Jeff Garzik
0 siblings, 2 replies; 3+ messages in thread
From: Randy Dunlap @ 2007-02-05 18:44 UTC (permalink / raw)
To: netdev; +Cc: jgarzik
From: Randy Dunlap <randy.dunlap@oracle.com>
sparse complains about differing types from prototype to
definition, so change the u32 to phy_interface_t:
drivers/net/phy/phy_device.c:140:19: error: symbol 'phy_connect' redeclared with different type (originally declared at include/linux/phy.h:362) - incompatible argument 5 (different signedness)
drivers/net/phy/phy_device.c:190:19: error: symbol 'phy_attach' redeclared with different type (originally declared at include/linux/phy.h:360) - incompatible argument 4 (different signedness)
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
---
drivers/net/phy/phy_device.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--- linux-2620-pv.orig/drivers/net/phy/phy_device.c
+++ linux-2620-pv/drivers/net/phy/phy_device.c
@@ -139,7 +139,7 @@ void phy_prepare_link(struct phy_device
*/
struct phy_device * phy_connect(struct net_device *dev, const char *phy_id,
void (*handler)(struct net_device *), u32 flags,
- u32 interface)
+ phy_interface_t interface)
{
struct phy_device *phydev;
@@ -188,7 +188,7 @@ static int phy_compare_id(struct device
}
struct phy_device *phy_attach(struct net_device *dev,
- const char *phy_id, u32 flags, u32 interface)
+ const char *phy_id, u32 flags, phy_interface_t interface)
{
struct bus_type *bus = &mdio_bus_type;
struct phy_device *phydev;
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] phy devices: use same arg types
2007-02-05 18:44 [PATCH] phy devices: use same arg types Randy Dunlap
@ 2007-02-08 23:25 ` Andy Fleming
2007-02-09 21:35 ` Jeff Garzik
1 sibling, 0 replies; 3+ messages in thread
From: Andy Fleming @ 2007-02-08 23:25 UTC (permalink / raw)
To: Randy Dunlap; +Cc: netdev, jgarzik
On Feb 5, 2007, at 12:44, Randy Dunlap wrote:
> From: Randy Dunlap <randy.dunlap@oracle.com>
>
> sparse complains about differing types from prototype to
> definition, so change the u32 to phy_interface_t:
>
> drivers/net/phy/phy_device.c:140:19: error: symbol 'phy_connect'
> redeclared with different type (originally declared at include/
> linux/phy.h:362) - incompatible argument 5 (different signedness)
> drivers/net/phy/phy_device.c:190:19: error: symbol 'phy_attach'
> redeclared with different type (originally declared at include/
> linux/phy.h:360) - incompatible argument 4 (different signedness)
>
> Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Acked-by: Andy Fleming <afleming@freescale.com>
Oops, I thought I had fixed that before submission.
> ---
> drivers/net/phy/phy_device.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> --- linux-2620-pv.orig/drivers/net/phy/phy_device.c
> +++ linux-2620-pv/drivers/net/phy/phy_device.c
> @@ -139,7 +139,7 @@ void phy_prepare_link(struct phy_device
> */
> struct phy_device * phy_connect(struct net_device *dev, const char
> *phy_id,
> void (*handler)(struct net_device *), u32 flags,
> - u32 interface)
> + phy_interface_t interface)
> {
> struct phy_device *phydev;
>
> @@ -188,7 +188,7 @@ static int phy_compare_id(struct device
> }
>
> struct phy_device *phy_attach(struct net_device *dev,
> - const char *phy_id, u32 flags, u32 interface)
> + const char *phy_id, u32 flags, phy_interface_t interface)
> {
> struct bus_type *bus = &mdio_bus_type;
> struct phy_device *phydev;
> -
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] phy devices: use same arg types
2007-02-05 18:44 [PATCH] phy devices: use same arg types Randy Dunlap
2007-02-08 23:25 ` Andy Fleming
@ 2007-02-09 21:35 ` Jeff Garzik
1 sibling, 0 replies; 3+ messages in thread
From: Jeff Garzik @ 2007-02-09 21:35 UTC (permalink / raw)
To: Randy Dunlap; +Cc: netdev
Randy Dunlap wrote:
> From: Randy Dunlap <randy.dunlap@oracle.com>
>
> sparse complains about differing types from prototype to
> definition, so change the u32 to phy_interface_t:
>
> drivers/net/phy/phy_device.c:140:19: error: symbol 'phy_connect' redeclared with different type (originally declared at include/linux/phy.h:362) - incompatible argument 5 (different signedness)
> drivers/net/phy/phy_device.c:190:19: error: symbol 'phy_attach' redeclared with different type (originally declared at include/linux/phy.h:360) - incompatible argument 4 (different signedness)
>
> Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
> ---
> drivers/net/phy/phy_device.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
applied
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2007-02-09 21:35 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-02-05 18:44 [PATCH] phy devices: use same arg types Randy Dunlap
2007-02-08 23:25 ` Andy Fleming
2007-02-09 21:35 ` Jeff Garzik
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).