Fix missing semicolon

This commit is contained in:
Oleg
2024-05-29 23:40:37 +03:00
parent b5f6015304
commit 2a63e469ea

View File

@@ -43,7 +43,7 @@ static u8 *new_pidff_report_fixup(struct hid_device *hdev, __u8 *rdesc,
unsigned int *rsize) unsigned int *rsize)
{ {
if (hdev->vendor == USB_VENDOR_ID_MOZA) { if (hdev->vendor == USB_VENDOR_ID_MOZA) {
return moza_report_fixup(hdev, rdesc, rsize) return moza_report_fixup(hdev, rdesc, rsize);
} }
return rdesc; return rdesc;
} }