2022-10-03 10:27:29

by Wilken Gottwalt

[permalink] [raw]
Subject: [PATCH] hwmon: corsair-psu: fix typo in USB id description

Fixes: 0cf46a653bda ("hwmon: (corsair-psu) add USB id of new revision of the HX1000i psu")
Signed-off-by: Wilken Gottwalt <[email protected]>
---
drivers/hwmon/corsair-psu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/hwmon/corsair-psu.c b/drivers/hwmon/corsair-psu.c
index 345d883ab044..c1c27e475f6d 100644
--- a/drivers/hwmon/corsair-psu.c
+++ b/drivers/hwmon/corsair-psu.c
@@ -820,7 +820,7 @@ static const struct hid_device_id corsairpsu_idtable[] = {
{ HID_USB_DEVICE(0x1b1c, 0x1c0b) }, /* Corsair RM750i */
{ HID_USB_DEVICE(0x1b1c, 0x1c0c) }, /* Corsair RM850i */
{ HID_USB_DEVICE(0x1b1c, 0x1c0d) }, /* Corsair RM1000i */
- { HID_USB_DEVICE(0x1b1c, 0x1c1e) }, /* Corsaur HX1000i revision 2 */
+ { HID_USB_DEVICE(0x1b1c, 0x1c1e) }, /* Corsair HX1000i revision 2 */
{ },
};
MODULE_DEVICE_TABLE(hid, corsairpsu_idtable);
--
2.37.3


2022-10-05 18:32:35

by Guenter Roeck

[permalink] [raw]
Subject: Re: [PATCH] hwmon: corsair-psu: fix typo in USB id description

On Mon, Oct 03, 2022 at 09:05:27AM +0000, Wilken Gottwalt wrote:
> Fixes: 0cf46a653bda ("hwmon: (corsair-psu) add USB id of new revision of the HX1000i psu")
> Signed-off-by: Wilken Gottwalt <[email protected]>

Applied. In the future, please add some description (subject is
insufficient).

Thanks,
Guenter

> ---
> drivers/hwmon/corsair-psu.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/hwmon/corsair-psu.c b/drivers/hwmon/corsair-psu.c
> index 345d883ab044..c1c27e475f6d 100644
> --- a/drivers/hwmon/corsair-psu.c
> +++ b/drivers/hwmon/corsair-psu.c
> @@ -820,7 +820,7 @@ static const struct hid_device_id corsairpsu_idtable[] = {
> { HID_USB_DEVICE(0x1b1c, 0x1c0b) }, /* Corsair RM750i */
> { HID_USB_DEVICE(0x1b1c, 0x1c0c) }, /* Corsair RM850i */
> { HID_USB_DEVICE(0x1b1c, 0x1c0d) }, /* Corsair RM1000i */
> - { HID_USB_DEVICE(0x1b1c, 0x1c1e) }, /* Corsaur HX1000i revision 2 */
> + { HID_USB_DEVICE(0x1b1c, 0x1c1e) }, /* Corsair HX1000i revision 2 */
> { },
> };
> MODULE_DEVICE_TABLE(hid, corsairpsu_idtable);

2022-10-07 06:52:56

by Wilken Gottwalt

[permalink] [raw]
Subject: Re: [PATCH] hwmon: corsair-psu: fix typo in USB id description

On Wed, 5 Oct 2022 11:22:15 -0700
Guenter Roeck <[email protected]> wrote:

> On Mon, Oct 03, 2022 at 09:05:27AM +0000, Wilken Gottwalt wrote:
> > Fixes: 0cf46a653bda ("hwmon: (corsair-psu) add USB id of new revision of the HX1000i psu")
> > Signed-off-by: Wilken Gottwalt <[email protected]>
>
> Applied. In the future, please add some description (subject is
> insufficient).

Oh sorry. I wasn't sure how to handle this, I mean the title already says all,
nothing more to add.

greetings,
Will