aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Mailhol <mailhol.vincent@wanadoo.fr>2022-03-17 12:55:13 +0900
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2022-04-23 10:33:53 +0200
commit2ddf7617d568fdcbd3cc454bb4849fa6d3398c86 (patch)
treea62ae8a8b82e903ac90677e493bb5f78743cc00e
parentsound: usb: remove third argument of usb_maxpacket() (diff)
downloadlinux-dev-2ddf7617d568fdcbd3cc454bb4849fa6d3398c86.tar.xz
linux-dev-2ddf7617d568fdcbd3cc454bb4849fa6d3398c86.zip
usb: remove third argument of usb_maxpacket()
Now that all users of usb_maxpacket() have been migrated to only use two arguments, remove the third variadic argument which was introduced for the transition. Signed-off-by: Vincent Mailhol <mailhol.vincent@wanadoo.fr> Link: https://lore.kernel.org/r/20220317035514.6378-9-mailhol.vincent@wanadoo.fr Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--include/linux/usb.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/usb.h b/include/linux/usb.h
index 572e136f6314..8127782aa7a1 100644
--- a/include/linux/usb.h
+++ b/include/linux/usb.h
@@ -1969,8 +1969,7 @@ usb_pipe_endpoint(struct usb_device *dev, unsigned int pipe)
return eps[usb_pipeendpoint(pipe)];
}
-static inline u16 usb_maxpacket(struct usb_device *udev, int pipe,
- /* int is_out deprecated */ ...)
+static inline u16 usb_maxpacket(struct usb_device *udev, int pipe)
{
struct usb_host_endpoint *ep;
unsigned epnum = usb_pipeendpoint(pipe);