Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 52cfc61b authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Jiri Kosina
Browse files

HID: local function should be static



__usbhid_submit_report() is a local function wrapped by the exported
symbol usbhid_submit_report(). As such, it should be static.

Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Cc:  Jiri Kosina <jkosina@suse.cz>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 4cfae3e8
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -489,7 +489,8 @@ static void hid_ctrl(struct urb *urb)
	wake_up(&usbhid->wait);
}

void __usbhid_submit_report(struct hid_device *hid, struct hid_report *report, unsigned char dir)
static void __usbhid_submit_report(struct hid_device *hid, struct hid_report *report,
				   unsigned char dir)
{
	int head;
	struct usbhid_device *usbhid = hid->driver_data;