From: Tomasz Pakuła Date: Sat, 24 May 2025 17:47:20 +0000 (+0200) Subject: HID: pidff: Use __func__ in debugs X-Git-Tag: io_uring-6.17-20250815~80^2~2^2~4 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=3ab6f57dbebb007c177168be0011238fe8fddcee;p=linux-block.git HID: pidff: Use __func__ in debugs Fixes checkpatch.pl warnings Signed-off-by: Tomasz Pakuła Signed-off-by: Jiri Kosina --- diff --git a/drivers/hid/usbhid/hid-pidff.c b/drivers/hid/usbhid/hid-pidff.c index 743b76c8d3b2..88eb832265a4 100644 --- a/drivers/hid/usbhid/hid-pidff.c +++ b/drivers/hid/usbhid/hid-pidff.c @@ -940,7 +940,7 @@ static int pidff_find_fields(struct pidff_usage *usage, const u8 *table, struct hid_report *report, int count, int strict) { if (!report) { - pr_debug("pidff_find_fields, null report\n"); + pr_debug("%s, null report\n", __func__); return -1; } @@ -1069,7 +1069,7 @@ static struct hid_field *pidff_find_special_field(struct hid_report *report, int usage, int enforce_min) { if (!report) { - pr_debug("pidff_find_special_field, null report\n"); + pr_debug("%s, null report\n", __func__); return NULL; }