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] [day] [month] [year] [list]
Date:   Wed, 3 Mar 2021 03:09:01 +0000
From:   Jiqi JQ9 Li <lijq9@...ovo.com>
To:     Guenter Roeck <linux@...ck-us.net>,
        "jdelvare@...e.com" <jdelvare@...e.com>,
        "linux-hwmon@...r.kernel.org" <linux-hwmon@...r.kernel.org>,
        "linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
CC:     Mark RH Pearson <markpearson@...ovo.com>
Subject: 回复: [External]  Re: 回复: [PATCH] hwmon: (nct6883) Support NCT6886d

Thanks, I will re-send another email about this patch. Please check it.

Regards,
Jiqi

-----邮件原件-----
发件人: Guenter Roeck <groeck7@...il.com> 代表 Guenter Roeck
发送时间: 2021年3月3日 2:46
收件人: Jiqi JQ9 Li <lijq9@...ovo.com>; jdelvare@...e.com; linux-hwmon@...r.kernel.org; linux-kernel@...r.kernel.org
抄送: Mark RH Pearson <markpearson@...ovo.com>
主题: [External] Re: 回复: [PATCH] hwmon: (nct6883) Support NCT6886d

On 3/1/21 10:21 PM, Jiqi JQ9 Li wrote:
> Sorry, Please ignore this email as some typos. 
> 

No problem. I seem to be missing the typos, though.

Thanks,
Guenter

> -----邮件原件-----
> 发件人: Jiqi JQ9 Li <lijq9@...ovo.com> 
> 发送时间: 2021年3月2日 14:12
> 收件人: jdelvare@...e.com; linux@...ck-us.net; linux-hwmon@...r.kernel.org; linux-kernel@...r.kernel.org
> 抄送: Mark RH Pearson <markpearson@...ovo.com>; Jiqi JQ9 Li <lijq9@...ovo.com>
> 主题: [PATCH] hwmon: (nct6883) Support NCT6886d
> 
> Add support for NCT6886d chip used in the Lenovo P620.
> 
> Signed-off-by: Jiqi Li <lijq9@...ovo.com>
> Reviewed-by: Mark Pearson <markpearson@...ovo.com>
> ---
>  drivers/hwmon/nct6683.c | 9 ++++++++-
>  1 file changed, 8 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/hwmon/nct6683.c b/drivers/hwmon/nct6683.c index a23047a3bfe2..3de7bd146965 100644
> --- a/drivers/hwmon/nct6683.c
> +++ b/drivers/hwmon/nct6683.c
> @@ -12,6 +12,7 @@
>   *
>   * Chip        #vin    #fan    #pwm    #temp  chip ID
>   * nct6683d     21(1)   16      8       32(1) 0xc730
> + * nct6686d     21(1)   16      8       32(1) 0xd440
>   * nct6687d     21(1)   16      8       32(1) 0xd590
>   *
>   * Notes:
> @@ -33,7 +34,7 @@
>  #include <linux/platform_device.h>
>  #include <linux/slab.h>
>  
> -enum kinds { nct6683, nct6687 };
> +enum kinds { nct6683, nct6686, nct6687 };
>  
>  static bool force;
>  module_param(force, bool, 0);
> @@ -41,11 +42,13 @@ MODULE_PARM_DESC(force, "Set to one to enable support for unknown vendors");
>  
>  static const char * const nct6683_device_names[] = {
>  	"nct6683",
> +	"nct6686",
>  	"nct6687",
>  };
>  
>  static const char * const nct6683_chip_names[] = {
>  	"NCT6683D",
> +	"NCT6686D",
>  	"NCT6687D",
>  };
>  
> @@ -66,6 +69,7 @@ static const char * const nct6683_chip_names[] = {
>  
>  #define SIO_NCT6681_ID		0xb270	/* for later */
>  #define SIO_NCT6683_ID		0xc730
> +#define SIO_NCT6686_ID		0xd440
>  #define SIO_NCT6687_ID		0xd590
>  #define SIO_ID_MASK		0xFFF0
>  
> @@ -1362,6 +1366,9 @@ static int __init nct6683_find(int sioaddr, struct nct6683_sio_data *sio_data)
>  	case SIO_NCT6683_ID:
>  		sio_data->kind = nct6683;
>  		break;
> +	case SIO_NCT6686_ID:
> +		sio_data->kind = nct6686;
> +		break;
>  	case SIO_NCT6687_ID:
>  		sio_data->kind = nct6687;
>  		break;
> --
> 2.18.2
> 

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ