aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/rndis.h
diff options
context:
space:
mode:
authorLinus Walleij <linus.walleij@linaro.org>2012-05-11 18:17:26 -0400
committerDavid S. Miller <davem@davemloft.net>2012-05-12 15:15:20 -0400
commitd5543206b281506a8eb5b960e766b1881fa0f799 (patch)
tree46a4a94086b4b23473063a618ac450f33cb6a5c5 /include/linux/rndis.h
parente20289ed3f83e3b065f53d36dc1805937ce55d84 (diff)
usb/net: rndis: move bus message definition
This moves the bus message definition to land together with the other message types. This message is not used in the kernel but I'm keeping it anyway. Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/rndis.h')
-rw-r--r--include/linux/rndis.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/include/linux/rndis.h b/include/linux/rndis.h
index 3f2ba8fa2f2e..0c8dc7195cdb 100644
--- a/include/linux/rndis.h
+++ b/include/linux/rndis.h
@@ -31,6 +31,11 @@
31#define RNDIS_MSG_INDICATE 0x00000007 31#define RNDIS_MSG_INDICATE 0x00000007
32#define RNDIS_MSG_KEEPALIVE 0x00000008 32#define RNDIS_MSG_KEEPALIVE 0x00000008
33#define RNDIS_MSG_KEEPALIVE_C (RNDIS_MSG_KEEPALIVE|RNDIS_MSG_COMPLETION) 33#define RNDIS_MSG_KEEPALIVE_C (RNDIS_MSG_KEEPALIVE|RNDIS_MSG_COMPLETION)
34/*
35 * Reserved message type for private communication between lower-layer host
36 * driver and remote device, if necessary.
37 */
38#define RNDIS_MSG_BUS 0xff000001
34 39
35/* codes for "status" field of completion messages */ 40/* codes for "status" field of completion messages */
36#define RNDIS_STATUS_SUCCESS 0x00000000 41#define RNDIS_STATUS_SUCCESS 0x00000000
@@ -383,9 +388,3 @@
383#define REMOTE_CONDIS_MP_DELETE_VC_CMPLT 0x80008002 388#define REMOTE_CONDIS_MP_DELETE_VC_CMPLT 0x80008002
384#define REMOTE_CONDIS_MP_ACTIVATE_VC_CMPLT 0x80008005 389#define REMOTE_CONDIS_MP_ACTIVATE_VC_CMPLT 0x80008005
385#define REMOTE_CONDIS_MP_DEACTIVATE_VC_CMPLT 0x80008006 390#define REMOTE_CONDIS_MP_DEACTIVATE_VC_CMPLT 0x80008006
386
387/*
388 * Reserved message type for private communication between lower-layer host
389 * driver and remote device, if necessary.
390 */
391#define REMOTE_NDIS_BUS_MSG 0xff000001