Skip to content

Commit eb8aa72

Browse files
bwhacksdavem330
authored andcommitted
rndis_host: Quirky devices are still 'point-to-point'
My changes in commit 4d42d41 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 <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 5d30530 commit eb8aa72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/net/usb/rndis_host.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,7 @@ static const struct driver_info rndis_info = {
592592

593593
static const struct driver_info rndis_poll_status_info = {
594594
.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,
596596
.data = RNDIS_DRIVER_DATA_POLL_STATUS,
597597
.bind = rndis_bind,
598598
.unbind = rndis_unbind,

0 commit comments

Comments
 (0)