Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

rndis_host: Quirky devices are still 'point-to-point'

My changes in commit 4d42d417be75d750b82798922b6e775915e11bce were
written some time before the introduction of FLAG_POINTTOPOINT, so
didn't include that flag in the new driver_info. Change the new
driver_info to be consistent.

Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Ben Hutchings and committed by
David S. Miller
eb8aa72d 5d30530e

+1 -1
+1 -1
drivers/net/usb/rndis_host.c
··· 592 592 593 593 static const struct driver_info rndis_poll_status_info = { 594 594 .description = "RNDIS device (poll status before control)", 595 - .flags = FLAG_ETHER | FLAG_FRAMING_RN | FLAG_NO_SETINT, 595 + .flags = FLAG_ETHER | FLAG_POINTTOPOINT | FLAG_FRAMING_RN | FLAG_NO_SETINT, 596 596 .data = RNDIS_DRIVER_DATA_POLL_STATUS, 597 597 .bind = rndis_bind, 598 598 .unbind = rndis_unbind,