Re: [U-Boot] [PATCH] net: rtl8169: Fix build error when DEBUG is on

2016-03-25 Thread Joe Hershberger
On Fri, Mar 18, 2016 at 1:27 AM, Bin Meng  wrote:
> When DEBUG_RTL8169 is on, a build error occurs in function
> 'rtl_init': error: 'dev' undeclared. Fix this.
>
> Signed-off-by: Bin Meng 

Acked-by: Joe Hershberger 
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] [PATCH] net: rtl8169: Fix build error when DEBUG is on

2016-03-19 Thread Bin Meng
When DEBUG_RTL8169 is on, a build error occurs in function
'rtl_init': error: 'dev' undeclared. Fix this.

Signed-off-by: Bin Meng 
---
 drivers/net/rtl8169.c | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/net/rtl8169.c b/drivers/net/rtl8169.c
index 9e60adf..163b9df 100644
--- a/drivers/net/rtl8169.c
+++ b/drivers/net/rtl8169.c
@@ -995,7 +995,7 @@ static int rtl_init(unsigned long dev_ioaddr, const char 
*name,
/* Force RTL8169 in 10/100/1000 Full/Half mode. */
if (option > 0) {
 #ifdef DEBUG_RTL8169
-   printf("%s: Force-mode Enabled.\n", dev->name);
+   printf("%s: Force-mode Enabled.\n", name);
 #endif
Cap10_100 = 0, Cap1000 = 0;
switch (option) {
@@ -1027,7 +1027,7 @@ static int rtl_init(unsigned long dev_ioaddr, const char 
*name,
} else {
 #ifdef DEBUG_RTL8169
printf("%s: Auto-negotiation Enabled.\n",
-  dev->name);
+  name);
 #endif
/* enable 10/100 Full/Half Mode, leave 
PHY_AUTO_NEGO_REG bit4:0 unchanged */
mdio_write(PHY_AUTO_NEGO_REG,
@@ -1054,12 +1054,12 @@ static int rtl_init(unsigned long dev_ioaddr, const 
char *name,
if (option & _1000bpsF) {
 #ifdef DEBUG_RTL8169
printf("%s: 1000Mbps Full-duplex 
operation.\n",
-dev->name);
+  name);
 #endif
} else {
 #ifdef DEBUG_RTL8169
printf("%s: %sMbps %s-duplex 
operation.\n",
-  dev->name,
+  name,
   (option & _100bps) ? "100" :
   "10",
   (option & FullDup) ? "Full" :
@@ -1077,7 +1077,7 @@ static int rtl_init(unsigned long dev_ioaddr, const char 
*name,
 #ifdef DEBUG_RTL8169
printf
("%s: 1000Mbps Full-duplex operation, TBI Link %s!\n",
-dev->name,
+name,
 (RTL_R32(TBICSR) & TBILinkOK) ? "OK" : "Failed");
 #endif
}
-- 
1.8.2.1

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH] net: rtl8169: Fix build error when DEBUG is on

2016-03-19 Thread Tom Rini
On Thu, Mar 17, 2016 at 11:27:44PM -0700, Bin Meng wrote:

> When DEBUG_RTL8169 is on, a build error occurs in function
> 'rtl_init': error: 'dev' undeclared. Fix this.
> 
> Signed-off-by: Bin Meng 

Reviewed-by: Tom Rini 

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot