summary refs log tree commit diff
path: root/drivers/net/usb
diff options
context:
space:
mode:
authorBen Hutchings <ben@decadent.org.uk>2011-04-14 23:23:45 -0700
committerDavid S. Miller <davem@davemloft.net>2011-04-14 23:23:45 -0700
commiteb8aa72d4e8756bde74d5f22bdd968ee6131069a (patch)
treeb646e71fce2a343396fa7dfcfbd610465eae8ca0 /drivers/net/usb
parent5d30530efbb811f875786d788ae1c5d79547c3a4 (diff)
downloadlinux-eb8aa72d4e8756bde74d5f22bdd968ee6131069a.tar.gz
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>
Diffstat (limited to 'drivers/net/usb')
-rw-r--r--drivers/net/usb/rndis_host.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/usb/rndis_host.c b/drivers/net/usb/rndis_host.c
index 6d6c1da68a36..255d6a424a6b 100644
--- a/drivers/net/usb/rndis_host.c
+++ b/drivers/net/usb/rndis_host.c
@@ -592,7 +592,7 @@ static const struct driver_info	rndis_info = {
 
 static const struct driver_info	rndis_poll_status_info = {
 	.description =	"RNDIS device (poll status before control)",
-	.flags =	FLAG_ETHER | FLAG_FRAMING_RN | FLAG_NO_SETINT,
+	.flags =	FLAG_ETHER | FLAG_POINTTOPOINT | FLAG_FRAMING_RN | FLAG_NO_SETINT,
 	.data =		RNDIS_DRIVER_DATA_POLL_STATUS,
 	.bind =		rndis_bind,
 	.unbind =	rndis_unbind,