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]
Message-ID: <67564e1e-a5a8-9e0f-6dc1-5e2ce1df5e5b@wanyeetech.com>
Date:   Wed, 23 Dec 2020 22:15:32 +0800
From:   Zhou Yanjie <zhouyanjie@...yeetech.com>
To:     Paul Cercueil <paul@...pouillou.net>,
        Kishon Vijay Abraham I <kishon@...com>,
        Vinod Koul <vkoul@...nel.org>
Cc:     漆鹏振 <aric.pzqi@...enic.com>,
        linux-kernel@...r.kernel.org
Subject: Re: [PATCH] phy: ingenic: Remove useless field .version

Hi Paul,

On 2020/12/23 下午8:45, Paul Cercueil wrote:
> Remove the useless field .version from the private structure, which is
> set but never read.
>
> Signed-off-by: Paul Cercueil <paul@...pouillou.net>
> ---
>   drivers/phy/ingenic/phy-ingenic-usb.c | 23 -----------------------
>   1 file changed, 23 deletions(-)


Reviewed-by: 周琰杰 (Zhou Yanjie) <zhouyanjie@...yeetech.com>


Thanks and best regards!


>
> diff --git a/drivers/phy/ingenic/phy-ingenic-usb.c b/drivers/phy/ingenic/phy-ingenic-usb.c
> index 4d1587d82286..ea127b177f46 100644
> --- a/drivers/phy/ingenic/phy-ingenic-usb.c
> +++ b/drivers/phy/ingenic/phy-ingenic-usb.c
> @@ -82,18 +82,7 @@
>   #define USBPCR1_PORT_RST			BIT(21)
>   #define USBPCR1_WORD_IF_16BIT		BIT(19)
>   
> -enum ingenic_usb_phy_version {
> -	ID_JZ4770,
> -	ID_JZ4775,
> -	ID_JZ4780,
> -	ID_X1000,
> -	ID_X1830,
> -	ID_X2000,
> -};
> -
>   struct ingenic_soc_info {
> -	enum ingenic_usb_phy_version version;
> -
>   	void (*usb_phy_init)(struct phy *phy);
>   };
>   
> @@ -300,38 +289,26 @@ static void x2000_usb_phy_init(struct phy *phy)
>   }
>   
>   static const struct ingenic_soc_info jz4770_soc_info = {
> -	.version = ID_JZ4770,
> -
>   	.usb_phy_init = jz4770_usb_phy_init,
>   };
>   
>   static const struct ingenic_soc_info jz4775_soc_info = {
> -	.version = ID_JZ4775,
> -
>   	.usb_phy_init = jz4775_usb_phy_init,
>   };
>   
>   static const struct ingenic_soc_info jz4780_soc_info = {
> -	.version = ID_JZ4780,
> -
>   	.usb_phy_init = jz4780_usb_phy_init,
>   };
>   
>   static const struct ingenic_soc_info x1000_soc_info = {
> -	.version = ID_X1000,
> -
>   	.usb_phy_init = x1000_usb_phy_init,
>   };
>   
>   static const struct ingenic_soc_info x1830_soc_info = {
> -	.version = ID_X1830,
> -
>   	.usb_phy_init = x1830_usb_phy_init,
>   };
>   
>   static const struct ingenic_soc_info x2000_soc_info = {
> -	.version = ID_X2000,
> -
>   	.usb_phy_init = x2000_usb_phy_init,
>   };
>   

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ