usb: mtu3: Remove unsused inline function is_first_entry
authorYueHaibing <yuehaibing@huawei.com>
Fri, 31 Jul 2020 08:20:08 +0000 (16:20 +0800)
committerFelipe Balbi <balbi@kernel.org>
Fri, 2 Oct 2020 06:43:36 +0000 (09:43 +0300)
It is never used, so can be removed.

Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Signed-off-by: Felipe Balbi <balbi@kernel.org>
drivers/usb/mtu3/mtu3.h

index 71f4f02..aef0a0b 100644 (file)
@@ -370,12 +370,6 @@ static inline struct mtu3 *gadget_to_mtu3(struct usb_gadget *g)
        return container_of(g, struct mtu3, g);
 }
 
-static inline int is_first_entry(const struct list_head *list,
-       const struct list_head *head)
-{
-       return list_is_last(head, list);
-}
-
 static inline struct mtu3_request *to_mtu3_request(struct usb_request *req)
 {
        return req ? container_of(req, struct mtu3_request, request) : NULL;