Message ID | Yzql13NOvQLlrye1@monster.localdomain (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
Series | hwmon: corsair-psu: fix typo in USB id description | expand |
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 <wilken.gottwalt@posteo.net> 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);
On Wed, 5 Oct 2022 11:22:15 -0700 Guenter Roeck <linux@roeck-us.net> 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 <wilken.gottwalt@posteo.net> > > 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
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);
Fixes: 0cf46a653bda ("hwmon: (corsair-psu) add USB id of new revision of the HX1000i psu") Signed-off-by: Wilken Gottwalt <wilken.gottwalt@posteo.net> --- drivers/hwmon/corsair-psu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)