public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/2] net: designware: Add SoCFPGA GMAC DT compatible string
@ 2015-07-27 20:33 Marek Vasut
  2015-07-27 20:33 ` [U-Boot] [PATCH 2/2] net: designware: Rename the driver var name to eth_designware Marek Vasut
  2015-08-03 17:31 ` [U-Boot] [PATCH 1/2] net: designware: Add SoCFPGA GMAC DT compatible string Joe Hershberger
  0 siblings, 2 replies; 7+ messages in thread
From: Marek Vasut @ 2015-07-27 20:33 UTC (permalink / raw)
  To: u-boot

Add the OF compatible property to match the SoCFPGA GMAC.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Dinh Nguyen <dinguyen@opensource.altera.com>
Cc: Joe Hershberger <joe.hershberger@ni.com>
---
 drivers/net/designware.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/net/designware.c b/drivers/net/designware.c
index bcae842..cadf3c8 100644
--- a/drivers/net/designware.c
+++ b/drivers/net/designware.c
@@ -608,6 +608,7 @@ static int designware_eth_ofdata_to_platdata(struct udevice *dev)
 
 static const struct udevice_id designware_eth_ids[] = {
 	{ .compatible = "allwinner,sun7i-a20-gmac" },
+	{ .compatible = "altr,socfpga-stmmac" },
 	{ }
 };
 
-- 
2.1.4

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

* [U-Boot] [PATCH 2/2] net: designware: Rename the driver var name to eth_designware
  2015-07-27 20:33 [U-Boot] [PATCH 1/2] net: designware: Add SoCFPGA GMAC DT compatible string Marek Vasut
@ 2015-07-27 20:33 ` Marek Vasut
  2015-08-03 16:06   ` Marek Vasut
  2015-08-03 17:30   ` Joe Hershberger
  2015-08-03 17:31 ` [U-Boot] [PATCH 1/2] net: designware: Add SoCFPGA GMAC DT compatible string Joe Hershberger
  1 sibling, 2 replies; 7+ messages in thread
From: Marek Vasut @ 2015-07-27 20:33 UTC (permalink / raw)
  To: u-boot

The driver variable name is eth_sandbox, which is probably a copy-paste
mistake. Fix it.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Dinh Nguyen <dinguyen@opensource.altera.com>
Cc: Joe Hershberger <joe.hershberger@ni.com>
---
 drivers/net/designware.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/designware.c b/drivers/net/designware.c
index cadf3c8..d9cb507 100644
--- a/drivers/net/designware.c
+++ b/drivers/net/designware.c
@@ -612,7 +612,7 @@ static const struct udevice_id designware_eth_ids[] = {
 	{ }
 };
 
-U_BOOT_DRIVER(eth_sandbox) = {
+U_BOOT_DRIVER(eth_designware) = {
 	.name	= "eth_designware",
 	.id	= UCLASS_ETH,
 	.of_match = designware_eth_ids,
-- 
2.1.4

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

* [U-Boot] [PATCH 2/2] net: designware: Rename the driver var name to eth_designware
  2015-07-27 20:33 ` [U-Boot] [PATCH 2/2] net: designware: Rename the driver var name to eth_designware Marek Vasut
@ 2015-08-03 16:06   ` Marek Vasut
  2015-08-03 17:30   ` Joe Hershberger
  1 sibling, 0 replies; 7+ messages in thread
From: Marek Vasut @ 2015-08-03 16:06 UTC (permalink / raw)
  To: u-boot

On Monday, July 27, 2015 at 10:33:17 PM, Marek Vasut wrote:
> The driver variable name is eth_sandbox, which is probably a copy-paste
> mistake. Fix it.
> 
> Signed-off-by: Marek Vasut <marex@denx.de>
> Cc: Dinh Nguyen <dinguyen@opensource.altera.com>
> Cc: Joe Hershberger <joe.hershberger@ni.com>

Hi Joe, I can pick both of those through u-boot-socfpga if you don't mind,
they're trivial and I sure can use them. Can you give me an ACK please ?

Best regards,
Marek Vasut

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

* [U-Boot] [PATCH 2/2] net: designware: Rename the driver var name to eth_designware
  2015-07-27 20:33 ` [U-Boot] [PATCH 2/2] net: designware: Rename the driver var name to eth_designware Marek Vasut
  2015-08-03 16:06   ` Marek Vasut
@ 2015-08-03 17:30   ` Joe Hershberger
  2015-08-03 17:43     ` Marek Vasut
  1 sibling, 1 reply; 7+ messages in thread
From: Joe Hershberger @ 2015-08-03 17:30 UTC (permalink / raw)
  To: u-boot

Hi Marek,

On Mon, Jul 27, 2015 at 3:33 PM, Marek Vasut <marex@denx.de> wrote:
> The driver variable name is eth_sandbox, which is probably a copy-paste
> mistake. Fix it.
>
> Signed-off-by: Marek Vasut <marex@denx.de>
> Cc: Dinh Nguyen <dinguyen@opensource.altera.com>
> Cc: Joe Hershberger <joe.hershberger@ni.com>
> ---
Acked-by: Joe Hershberger <joe.hershberger@ni.com>

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

* [U-Boot] [PATCH 1/2] net: designware: Add SoCFPGA GMAC DT compatible string
  2015-07-27 20:33 [U-Boot] [PATCH 1/2] net: designware: Add SoCFPGA GMAC DT compatible string Marek Vasut
  2015-07-27 20:33 ` [U-Boot] [PATCH 2/2] net: designware: Rename the driver var name to eth_designware Marek Vasut
@ 2015-08-03 17:31 ` Joe Hershberger
  2015-08-03 17:42   ` Marek Vasut
  1 sibling, 1 reply; 7+ messages in thread
From: Joe Hershberger @ 2015-08-03 17:31 UTC (permalink / raw)
  To: u-boot

Hi Marek,

On Mon, Jul 27, 2015 at 3:33 PM, Marek Vasut <marex@denx.de> wrote:
> Add the OF compatible property to match the SoCFPGA GMAC.
>
> Signed-off-by: Marek Vasut <marex@denx.de>
> Cc: Dinh Nguyen <dinguyen@opensource.altera.com>
> Cc: Joe Hershberger <joe.hershberger@ni.com>
> ---
Acked-by: Joe Hershberger <joe.hershberger@ni.com>

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

* [U-Boot] [PATCH 1/2] net: designware: Add SoCFPGA GMAC DT compatible string
  2015-08-03 17:31 ` [U-Boot] [PATCH 1/2] net: designware: Add SoCFPGA GMAC DT compatible string Joe Hershberger
@ 2015-08-03 17:42   ` Marek Vasut
  0 siblings, 0 replies; 7+ messages in thread
From: Marek Vasut @ 2015-08-03 17:42 UTC (permalink / raw)
  To: u-boot

On Monday, August 03, 2015 at 07:31:55 PM, Joe Hershberger wrote:
> Hi Marek,
> 
> On Mon, Jul 27, 2015 at 3:33 PM, Marek Vasut <marex@denx.de> wrote:
> > Add the OF compatible property to match the SoCFPGA GMAC.
> > 
> > Signed-off-by: Marek Vasut <marex@denx.de>
> > Cc: Dinh Nguyen <dinguyen@opensource.altera.com>
> > Cc: Joe Hershberger <joe.hershberger@ni.com>
> > ---
> 
> Acked-by: Joe Hershberger <joe.hershberger@ni.com>

Applied to u-boot-socfpga/master , thanks !

Best regards,
Marek Vasut

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

* [U-Boot] [PATCH 2/2] net: designware: Rename the driver var name to eth_designware
  2015-08-03 17:30   ` Joe Hershberger
@ 2015-08-03 17:43     ` Marek Vasut
  0 siblings, 0 replies; 7+ messages in thread
From: Marek Vasut @ 2015-08-03 17:43 UTC (permalink / raw)
  To: u-boot

On Monday, August 03, 2015 at 07:30:54 PM, Joe Hershberger wrote:
> Hi Marek,
> 
> On Mon, Jul 27, 2015 at 3:33 PM, Marek Vasut <marex@denx.de> wrote:
> > The driver variable name is eth_sandbox, which is probably a copy-paste
> > mistake. Fix it.
> > 
> > Signed-off-by: Marek Vasut <marex@denx.de>
> > Cc: Dinh Nguyen <dinguyen@opensource.altera.com>
> > Cc: Joe Hershberger <joe.hershberger@ni.com>
> > ---
> 
> Acked-by: Joe Hershberger <joe.hershberger@ni.com>

Applied to u-boot-socfpga/master , thanks, this really helped me a lot :)

Best regards,
Marek Vasut

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

end of thread, other threads:[~2015-08-03 17:43 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-27 20:33 [U-Boot] [PATCH 1/2] net: designware: Add SoCFPGA GMAC DT compatible string Marek Vasut
2015-07-27 20:33 ` [U-Boot] [PATCH 2/2] net: designware: Rename the driver var name to eth_designware Marek Vasut
2015-08-03 16:06   ` Marek Vasut
2015-08-03 17:30   ` Joe Hershberger
2015-08-03 17:43     ` Marek Vasut
2015-08-03 17:31 ` [U-Boot] [PATCH 1/2] net: designware: Add SoCFPGA GMAC DT compatible string Joe Hershberger
2015-08-03 17:42   ` Marek Vasut

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox