Re: [U-Boot] [Patch v2] PHY: micrel.c: add support for KSZ9031

2013-07-08 Thread Joe Hershberger
On Wed, Feb 6, 2013 at 3:18 PM, David Andrey wrote: > Add support for Micrel PHY KSZ9031 in phylib, > including small rework for KSZ9021 to avoid > code duplication > > Signed-off-by: David Andrey > Cc: Troy Kisky > Cc: Joe Herschberger > Cc: Andy Fleming Applied, Thanks. -Joe ___

Re: [U-Boot] [Patch v2] PHY: micrel.c: add support for KSZ9031

2013-06-22 Thread Joe Hershberger
On Tue, Jun 18, 2013 at 10:31 AM, Fabio Estevam wrote: > Hi Joe, > > On Wed, Feb 6, 2013 at 7:18 PM, David Andrey > wrote: >> Add support for Micrel PHY KSZ9031 in phylib, >> including small rework for KSZ9021 to avoid >> code duplication >> >> Signed-off-by: David Andrey >> Cc: Troy Kisky >>

Re: [U-Boot] [Patch v2] PHY: micrel.c: add support for KSZ9031

2013-06-18 Thread Fabio Estevam
Hi Joe, On Wed, Feb 6, 2013 at 7:18 PM, David Andrey wrote: > Add support for Micrel PHY KSZ9031 in phylib, > including small rework for KSZ9021 to avoid > code duplication > > Signed-off-by: David Andrey > Cc: Troy Kisky > Cc: Joe Herschberger > Cc: Andy Fleming Can we get this one applied

Re: [U-Boot] [Patch v2] PHY: micrel.c: add support for KSZ9031

2013-04-02 Thread Stefan Roese
Hi David, On 25.03.2013 21:39, David Andrey wrote: >> Why don't you just change the mask to support both PHY's with one > struct here? Something like this: >> >> static struct phy_driver ksz9021_driver = { >> -.name = "Micrel ksz9021", >> +.name = "Micrel ksz90x1", >> .uid = 0x22161

Re: [U-Boot] [Patch v2] PHY: micrel.c: add support for KSZ9031

2013-03-25 Thread David Andrey
Hi Stefan, > Why don't you just change the mask to support both PHY's with one struct here? Something like this: > > static struct phy_driver ksz9021_driver = { > - .name = "Micrel ksz9021", > + .name = "Micrel ksz90x1", > .uid = 0x221610, > - .mask = 0xf0, > + .mask =

Re: [U-Boot] [Patch v2] PHY: micrel.c: add support for KSZ9031

2013-03-07 Thread Stefan Roese
Hi David, On 06.02.2013 22:18, David Andrey wrote: > Add support for Micrel PHY KSZ9031 in phylib, > including small rework for KSZ9021 to avoid > code duplication > > Signed-off-by: David Andrey > Cc: Troy Kisky > Cc: Joe Herschberger > Cc: Andy Fleming > > --- > > Changes for v2: >

[U-Boot] [Patch v2] PHY: micrel.c: add support for KSZ9031

2013-02-06 Thread David Andrey
Add support for Micrel PHY KSZ9031 in phylib, including small rework for KSZ9021 to avoid code duplication Signed-off-by: David Andrey Cc: Troy Kisky Cc: Joe Herschberger Cc: Andy Fleming --- Changes for v2: - Same startup function for KSZ9021 and 9031 --- drivers/net/phy/micrel.c |