Răsfoiți Sursa

HID: hyperv: fix _raw_request() prototype

The 3rd argument is pointer to the buffer, not a single __u8.
This has no bad sideeffect, as the stub is not using any of its
argument, but better have it correct.

Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Jiri Kosina 11 ani în urmă
părinte
comite
c3d77fab51
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      drivers/hid/hid-hyperv.c

+ 1 - 1
drivers/hid/hid-hyperv.c

@@ -457,7 +457,7 @@ static void mousevsc_hid_stop(struct hid_device *hid)
 
 static int mousevsc_hid_raw_request(struct hid_device *hid,
 				    unsigned char report_num,
-				    __u8 buf, size_t len,
+				    __u8 *buf, size_t len,
 				    unsigned char rtype,
 				    int reqtype)
 {