lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Tue, 31 Jan 2017 11:03:11 +0100
From:   Giuseppe CAVALLARO <peppe.cavallaro@...com>
To:     Corentin Labbe <clabbe.montjoie@...il.com>,
        <alexandre.torgue@...com>, <netdev@...r.kernel.org>
CC:     <davem@...emloft.net>, <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH 01/17] net: stmmac: fix the typo on MAC_RNABLE_RX

On 1/31/2017 10:11 AM, Corentin Labbe wrote:
> the define MAC_RNABLE_RX have a typo, rename it to MAC_ENABLE_RX
>
> Signed-off-by: Corentin Labbe <clabbe.montjoie@...il.com>

Acked-by: Giuseppe Cavallaro <peppe.cavallaro@...com>

> ---
>  drivers/net/ethernet/stmicro/stmmac/common.h    | 2 +-
>  drivers/net/ethernet/stmicro/stmmac/dwmac_lib.c | 4 ++--
>  2 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/net/ethernet/stmicro/stmmac/common.h b/drivers/net/ethernet/stmicro/stmmac/common.h
> index b13a144..0f90f91 100644
> --- a/drivers/net/ethernet/stmicro/stmmac/common.h
> +++ b/drivers/net/ethernet/stmicro/stmmac/common.h
> @@ -340,7 +340,7 @@ struct dma_features {
>  /* Common MAC defines */
>  #define MAC_CTRL_REG		0x00000000	/* MAC Control */
>  #define MAC_ENABLE_TX		0x00000008	/* Transmitter Enable */
> -#define MAC_RNABLE_RX		0x00000004	/* Receiver Enable */
> +#define MAC_ENABLE_RX		0x00000004	/* Receiver Enable */
>
>  /* Default LPI timers */
>  #define STMMAC_DEFAULT_LIT_LS	0x3E8
> diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac_lib.c b/drivers/net/ethernet/stmicro/stmmac/dwmac_lib.c
> index 84e3e84..a414bde 100644
> --- a/drivers/net/ethernet/stmicro/stmmac/dwmac_lib.c
> +++ b/drivers/net/ethernet/stmicro/stmmac/dwmac_lib.c
> @@ -261,9 +261,9 @@ void stmmac_set_mac(void __iomem *ioaddr, bool enable)
>  	u32 value = readl(ioaddr + MAC_CTRL_REG);
>
>  	if (enable)
> -		value |= MAC_RNABLE_RX | MAC_ENABLE_TX;
> +		value |= MAC_ENABLE_RX | MAC_ENABLE_TX;
>  	else
> -		value &= ~(MAC_ENABLE_TX | MAC_RNABLE_RX);
> +		value &= ~(MAC_ENABLE_TX | MAC_ENABLE_RX);
>
>  	writel(value, ioaddr + MAC_CTRL_REG);
>  }
>

Powered by blists - more mailing lists