diff options
author | David S. Miller <davem@davemloft.net> | 2008-03-26 02:11:25 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-03-26 02:11:25 -0400 |
commit | 14eabf70c82cade5dbc71d2e913d533193a91785 (patch) | |
tree | 53bdf1534f73c59fe8ae796f660cab541a20224c /drivers/net/usb/rndis_host.c | |
parent | f49e1aa133c2c9b74b5dfddca8863609bbda9086 (diff) | |
parent | 2f4489112896770d66dc2960f71174d69ee23004 (diff) |
Merge branch 'upstream-net26' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6
Diffstat (limited to 'drivers/net/usb/rndis_host.c')
-rw-r--r-- | drivers/net/usb/rndis_host.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/net/usb/rndis_host.c b/drivers/net/usb/rndis_host.c index 727547a28992..06ae1b2b3b34 100644 --- a/drivers/net/usb/rndis_host.c +++ b/drivers/net/usb/rndis_host.c | |||
@@ -218,7 +218,7 @@ EXPORT_SYMBOL_GPL(rndis_command); | |||
218 | * ActiveSync 4.1 Windows driver. | 218 | * ActiveSync 4.1 Windows driver. |
219 | */ | 219 | */ |
220 | static int rndis_query(struct usbnet *dev, struct usb_interface *intf, | 220 | static int rndis_query(struct usbnet *dev, struct usb_interface *intf, |
221 | void *buf, u32 oid, u32 in_len, | 221 | void *buf, __le32 oid, u32 in_len, |
222 | void **reply, int *reply_len) | 222 | void **reply, int *reply_len) |
223 | { | 223 | { |
224 | int retval; | 224 | int retval; |
@@ -283,7 +283,8 @@ generic_rndis_bind(struct usbnet *dev, struct usb_interface *intf, int flags) | |||
283 | struct rndis_set_c *set_c; | 283 | struct rndis_set_c *set_c; |
284 | struct rndis_halt *halt; | 284 | struct rndis_halt *halt; |
285 | } u; | 285 | } u; |
286 | u32 tmp, *phym; | 286 | u32 tmp; |
287 | __le32 *phym; | ||
287 | int reply_len; | 288 | int reply_len; |
288 | unsigned char *bp; | 289 | unsigned char *bp; |
289 | 290 | ||