Message ID | 20210615080549.3362337-1-zenczykowski@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | c1a3d4067309451e68c33dbd356032549cc0bd8e |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | net: cdc_ncm: switch to eth%d interface naming | expand |
Context | Check | Description |
---|---|---|
netdev/cover_letter | success | Link |
netdev/fixes_present | success | Link |
netdev/patch_count | success | Link |
netdev/tree_selection | success | Guessed tree name to be net-next |
netdev/subject_prefix | warning | Target tree name not specified in the subject |
netdev/cc_maintainers | fail | 2 blamed authors not CCed: bjorn@mork.no davem@davemloft.net; 5 maintainers not CCed: oliver@neukum.org bjorn@mork.no linux-usb@vger.kernel.org davem@davemloft.net kuba@kernel.org |
netdev/source_inline | success | Was 0 now: 0 |
netdev/verify_signedoff | success | Link |
netdev/module_param | success | Was 0 now: 0 |
netdev/build_32bit | success | Errors and warnings before: 0 this patch: 0 |
netdev/kdoc | success | Errors and warnings before: 0 this patch: 0 |
netdev/verify_fixes | success | Link |
netdev/checkpatch | success | total: 0 errors, 0 warnings, 0 checks, 8 lines checked |
netdev/build_allmodconfig_warn | success | Errors and warnings before: 0 this patch: 0 |
netdev/header_inline | success | Link |
Hello: This patch was applied to netdev/net.git (refs/heads/master): On Tue, 15 Jun 2021 01:05:49 -0700 you wrote: > From: Maciej Żenczykowski <maze@google.com> > > This is meant to make the host side cdc_ncm interface consistently > named just like the older CDC protocols: cdc_ether & cdc_ecm > (and even rndis_host), which all use 'FLAG_ETHER | FLAG_POINTTOPOINT'. > > include/linux/usb/usbnet.h: > #define FLAG_ETHER 0x0020 /* maybe use "eth%d" names */ > #define FLAG_WLAN 0x0080 /* use "wlan%d" names */ > #define FLAG_WWAN 0x0400 /* use "wwan%d" names */ > #define FLAG_POINTTOPOINT 0x1000 /* possibly use "usb%d" names */ > > [...] Here is the summary with links: - net: cdc_ncm: switch to eth%d interface naming https://git.kernel.org/netdev/net/c/c1a3d4067309 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html
diff --git a/drivers/net/usb/cdc_ncm.c b/drivers/net/usb/cdc_ncm.c index c67f11e0e9a7..24753a4da7e6 100644 --- a/drivers/net/usb/cdc_ncm.c +++ b/drivers/net/usb/cdc_ncm.c @@ -1892,7 +1892,7 @@ static void cdc_ncm_status(struct usbnet *dev, struct urb *urb) static const struct driver_info cdc_ncm_info = { .description = "CDC NCM", .flags = FLAG_POINTTOPOINT | FLAG_NO_SETINT | FLAG_MULTI_PACKET - | FLAG_LINK_INTR, + | FLAG_LINK_INTR | FLAG_ETHER, .bind = cdc_ncm_bind, .unbind = cdc_ncm_unbind, .manage_power = usbnet_manage_power,