Skip to content

Commit

Permalink
Merge branch 'for-6.13' into 'master'
Browse files Browse the repository at this point in the history
  • Loading branch information
jigpu committed Dec 9, 2024
2 parents 105af20 + 1b96441 commit bf62fdd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion 4.18/wacom_sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -2267,7 +2267,8 @@ static void wacom_update_name(struct wacom *wacom, const char *suffix)
if (wacom_is_using_usb_driver(wacom->hdev)) {
struct usb_interface *intf = to_usb_interface(wacom->hdev->dev.parent);
struct usb_device *dev = interface_to_usbdev(intf);
product_name = dev->product;
if (dev->product != NULL)
product_name = dev->product;
}

if (wacom->hdev->bus == BUS_I2C) {
Expand Down

0 comments on commit bf62fdd

Please sign in to comment.