diff mbox series

hwmon: (nct6683) Add another customer ID for NCT6687D sensor chip on some MSI boards.

Message ID 20230515144910.13514-1-llyyr.public@gmail.com (mailing list archive)
State Superseded, archived
Headers show
Series hwmon: (nct6683) Add another customer ID for NCT6687D sensor chip on some MSI boards. | expand

Commit Message

llyyr May 15, 2023, 2:49 p.m. UTC
This value was found on a MSI Z690-A PRO DDR5 with NCT6687D.

Signed-off-by: llyyr <llyyr.public@gmail.com>
---
 drivers/hwmon/nct6683.c | 3 +++
 1 file changed, 3 insertions(+)

Comments

Guenter Roeck May 15, 2023, 6:59 p.m. UTC | #1
On Mon, May 15, 2023 at 08:19:10PM +0530, llyyr wrote:
> This value was found on a MSI Z690-A PRO DDR5 with NCT6687D.
> 
> Signed-off-by: llyyr <llyyr.public@gmail.com>

This needs to be a real name.

Guenter

> ---
>  drivers/hwmon/nct6683.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/drivers/hwmon/nct6683.c b/drivers/hwmon/nct6683.c
> index a872f783e..f673f7d07 100644
> --- a/drivers/hwmon/nct6683.c
> +++ b/drivers/hwmon/nct6683.c
> @@ -173,6 +173,7 @@ superio_exit(int ioreg)
>  #define NCT6683_CUSTOMER_ID_INTEL	0x805
>  #define NCT6683_CUSTOMER_ID_MITAC	0xa0e
>  #define NCT6683_CUSTOMER_ID_MSI		0x201
> +#define NCT6683_CUSTOMER_ID_MSI2	0x200
>  #define NCT6683_CUSTOMER_ID_ASROCK		0xe2c
>  #define NCT6683_CUSTOMER_ID_ASROCK2	0xe1b
>  
> @@ -1220,6 +1221,8 @@ static int nct6683_probe(struct platform_device *pdev)
>  		break;
>  	case NCT6683_CUSTOMER_ID_MSI:
>  		break;
> +	case NCT6683_CUSTOMER_ID_MSI2:
> +		break;
>  	case NCT6683_CUSTOMER_ID_ASROCK:
>  		break;
>  	case NCT6683_CUSTOMER_ID_ASROCK2:
> -- 
> 2.40.1
>
llyyr May 15, 2023, 8:52 p.m. UTC | #2
On 5/16/23 00:29, Guenter Roeck wrote:
> On Mon, May 15, 2023 at 08:19:10PM +0530, llyyr wrote:
>> This value was found on a MSI Z690-A PRO DDR5 with NCT6687D.
>>
>> Signed-off-by: llyyr <llyyr.public@gmail.com>
> 
> This needs to be a real name.
> 
> Guenter
> 

Do I need to resubmit the patch, or can you change it to Gopal Prasad then?
Guenter Roeck May 16, 2023, 7:56 p.m. UTC | #3
On Tue, May 16, 2023 at 02:22:55AM +0530, llyyr wrote:
> On 5/16/23 00:29, Guenter Roeck wrote:
> > On Mon, May 15, 2023 at 08:19:10PM +0530, llyyr wrote:
> > > This value was found on a MSI Z690-A PRO DDR5 with NCT6687D.
> > > 
> > > Signed-off-by: llyyr <llyyr.public@gmail.com>
> > 
> > This needs to be a real name.
> > 
> > Guenter
> > 
> 
> Do I need to resubmit the patch, or can you change it to Gopal Prasad then?
> 

Please resubmit.

Guenter
diff mbox series

Patch

diff --git a/drivers/hwmon/nct6683.c b/drivers/hwmon/nct6683.c
index a872f783e..f673f7d07 100644
--- a/drivers/hwmon/nct6683.c
+++ b/drivers/hwmon/nct6683.c
@@ -173,6 +173,7 @@  superio_exit(int ioreg)
 #define NCT6683_CUSTOMER_ID_INTEL	0x805
 #define NCT6683_CUSTOMER_ID_MITAC	0xa0e
 #define NCT6683_CUSTOMER_ID_MSI		0x201
+#define NCT6683_CUSTOMER_ID_MSI2	0x200
 #define NCT6683_CUSTOMER_ID_ASROCK		0xe2c
 #define NCT6683_CUSTOMER_ID_ASROCK2	0xe1b
 
@@ -1220,6 +1221,8 @@  static int nct6683_probe(struct platform_device *pdev)
 		break;
 	case NCT6683_CUSTOMER_ID_MSI:
 		break;
+	case NCT6683_CUSTOMER_ID_MSI2:
+		break;
 	case NCT6683_CUSTOMER_ID_ASROCK:
 		break;
 	case NCT6683_CUSTOMER_ID_ASROCK2: