]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
usb: gadget: f_fs: Use USB API functions rather than constants
authorChen Ni <nichen@iscas.ac.cn>
Wed, 18 Jun 2025 07:02:16 +0000 (15:02 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 19 Jun 2025 10:24:01 +0000 (12:24 +0200)
Use the function usb_endpoint_num() rather than constants.

The Coccinelle semantic patch is as follows:

@@ struct usb_endpoint_descriptor *epd; @@

- (epd->bEndpointAddress & \(USB_ENDPOINT_NUMBER_MASK\|0x0f\))
+ usb_endpoint_num(epd)

Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Link: https://lore.kernel.org/r/20250618070216.817034-1-nichen@iscas.ac.cn
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/gadget/function/f_fs.c

index 2dea9e42a0f86b4ba9db52de411b849b88ce7569..67fea7da4652fdec6250957684d0b12355df0fb1 100644 (file)
@@ -3295,7 +3295,7 @@ static int __ffs_func_bind_do_descs(enum ffs_entity_type type, u8 *valuep,
        if (ffs_ep->descs[ep_desc_id]) {
                pr_err("two %sspeed descriptors for EP %d\n",
                          speed_names[ep_desc_id],
-                         ds->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
+                         usb_endpoint_num(ds));
                return -EINVAL;
        }
        ffs_ep->descs[ep_desc_id] = ds;