summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Ian King <colin.i.king@gmail.com>2024-03-07 11:13:51 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2024-04-13 12:50:16 +0200
commitf90519f1d6a0c4d86bcd401f34bda11486fa4284 (patch)
treecc292d3455a85ca126d9e5775501340a34f6a59f
parent4a886ce3c846032ed8d9bf18f525f12dcb5de614 (diff)
downloadlinux-stable-f90519f1d6a0c4d86bcd401f34bda11486fa4284.tar.gz
linux-stable-f90519f1d6a0c4d86bcd401f34bda11486fa4284.tar.bz2
linux-stable-f90519f1d6a0c4d86bcd401f34bda11486fa4284.zip
usb: sl811-hcd: only defined function checkdone if QUIRK2 is defined
[ Upstream commit 12f371e2b6cb4b79c788f1f073992e115f4ca918 ] Function checkdone is only required if QUIRK2 is defined, so add appropriate #if / #endif around the function. Cleans up clang scan build warning: drivers/usb/host/sl811-hcd.c:588:18: warning: unused function 'checkdone' [-Wunused-function] Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Link: https://lore.kernel.org/r/20240307111351.1982382-1-colin.i.king@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
-rw-r--r--drivers/usb/host/sl811-hcd.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/usb/host/sl811-hcd.c b/drivers/usb/host/sl811-hcd.c
index 6dedefada92b..873300e8cd27 100644
--- a/drivers/usb/host/sl811-hcd.c
+++ b/drivers/usb/host/sl811-hcd.c
@@ -585,6 +585,7 @@ done(struct sl811 *sl811, struct sl811h_ep *ep, u8 bank)
finish_request(sl811, ep, urb, urbstat);
}
+#ifdef QUIRK2
static inline u8 checkdone(struct sl811 *sl811)
{
u8 ctl;
@@ -616,6 +617,7 @@ static inline u8 checkdone(struct sl811 *sl811)
#endif
return irqstat;
}
+#endif
static irqreturn_t sl811h_irq(struct usb_hcd *hcd)
{