diff mbox

[U-Boot,3/3] net: sh-eth: Fix typo from rESR_RTLF to EESR_RTLF

Message ID 1390431140-16290-3-git-send-email-nobuhiro.iwamatsu.yj@renesas.com
State Accepted, archived
Delegated to: Nobuhiro Iwamatsu
Headers show

Commit Message

Nobuhiro Iwamatsu Jan. 22, 2014, 10:52 p.m. UTC
'r' of rESR_RTLF is a mistake of E.

Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
---
 drivers/net/sh_eth.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Nobuhiro Iwamatsu June 6, 2014, 2:43 a.m. UTC | #1
ping.

2014-01-23 7:52 GMT+09:00 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>:
> 'r' of rESR_RTLF is a mistake of E.
>
> Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
> ---
>  drivers/net/sh_eth.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/net/sh_eth.h b/drivers/net/sh_eth.h
> index 2909659..d0d9aaa 100644
> --- a/drivers/net/sh_eth.h
> +++ b/drivers/net/sh_eth.h
> @@ -476,7 +476,7 @@ enum EESR_BIT {
>         EESR_CD   = 0x00000200, EESR_RTO  = 0x00000100,
>         EESR_RMAF = 0x00000080, EESR_CEEF = 0x00000040,
>         EESR_CELF = 0x00000020, EESR_RRF  = 0x00000010,
> -       rESR_RTLF = 0x00000008, EESR_RTSF = 0x00000004,
> +       EESR_RTLF = 0x00000008, EESR_RTSF = 0x00000004,
>         EESR_PRE  = 0x00000002, EESR_CERF = 0x00000001,
>  };
>
> --
> 1.8.5
>
diff mbox

Patch

diff --git a/drivers/net/sh_eth.h b/drivers/net/sh_eth.h
index 2909659..d0d9aaa 100644
--- a/drivers/net/sh_eth.h
+++ b/drivers/net/sh_eth.h
@@ -476,7 +476,7 @@  enum EESR_BIT {
 	EESR_CD   = 0x00000200, EESR_RTO  = 0x00000100,
 	EESR_RMAF = 0x00000080, EESR_CEEF = 0x00000040,
 	EESR_CELF = 0x00000020, EESR_RRF  = 0x00000010,
-	rESR_RTLF = 0x00000008, EESR_RTSF = 0x00000004,
+	EESR_RTLF = 0x00000008, EESR_RTSF = 0x00000004,
 	EESR_PRE  = 0x00000002, EESR_CERF = 0x00000001,
 };