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 david.and...@netmodule.com wrote: Add support for Micrel PHY KSZ9031 in phylib, including small rework for KSZ9021 to avoid code duplication Signed-off-by: David Andrey david.and...@netmodule.com Cc: Troy Kisky troy.ki...@boundarydevices.com Cc:

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 feste...@gmail.com wrote: Hi Joe, On Wed, Feb 6, 2013 at 7:18 PM, David Andrey david.and...@netmodule.com wrote: Add support for Micrel PHY KSZ9031 in phylib, including small rework for KSZ9021 to avoid code duplication Signed-off-by: David

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 david.and...@netmodule.com wrote: Add support for Micrel PHY KSZ9031 in phylib, including small rework for KSZ9021 to avoid code duplication Signed-off-by: David Andrey david.and...@netmodule.com Cc: Troy Kisky

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 = 0x221610, -.mask =

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 = 0xc0,

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 david.and...@netmodule.com Cc: Troy Kisky troy.ki...@boundarydevices.com Cc: Joe Herschberger

[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 david.and...@netmodule.com Cc: Troy Kisky troy.ki...@boundarydevices.com Cc: Joe Herschberger joe.hershber...@gmail.com Cc: Andy Fleming aflem...@freescale.com