Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 107718
b: refs/heads/master
c: 82f97b8
h: refs/heads/master
v: v3
  • Loading branch information
Ivo van Doorn authored and David S. Miller committed Aug 2, 2008
1 parent f22d625 commit c7393f5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e9e80ea5f2129e135e3a6fa260314b1c6d99b19a
refs/heads/master: 82f97b8d3cb3982ec97e081598c671fab2c321b0
4 changes: 2 additions & 2 deletions trunk/drivers/net/wireless/rt2x00/rt2x00usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ EXPORT_SYMBOL_GPL(rt2x00usb_vendor_request_buff);

int rt2x00usb_vendor_request_large_buff(struct rt2x00_dev *rt2x00dev,
const u8 request, const u8 requesttype,
const u16 offset, void *buffer,
const u16 offset, const void *buffer,
const u16 buffer_length,
const int timeout)
{
Expand All @@ -134,7 +134,7 @@ int rt2x00usb_vendor_request_large_buff(struct rt2x00_dev *rt2x00dev,

mutex_lock(&rt2x00dev->usb_cache_mutex);

tb = buffer;
tb = (char *)buffer;
off = offset;
len = buffer_length;
while (len && !status) {
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/net/wireless/rt2x00/rt2x00usb.h
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ int rt2x00usb_vendor_req_buff_lock(struct rt2x00_dev *rt2x00dev,
*/
int rt2x00usb_vendor_request_large_buff(struct rt2x00_dev *rt2x00dev,
const u8 request, const u8 requesttype,
const u16 offset, void *buffer,
const u16 offset, const void *buffer,
const u16 buffer_length,
const int timeout);

Expand Down

0 comments on commit c7393f5

Please sign in to comment.