Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 304617
b: refs/heads/master
c: 5085d12
h: refs/heads/master
i:
  304615: 9416f72
v: v3
  • Loading branch information
Oleksij Rempel authored and Greg Kroah-Hartman committed May 10, 2012
1 parent 11e96b2 commit 5264e03
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 12 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: 12ed793e355726cf3a834c30c8ddd0ae1e8f7a94
refs/heads/master: 5085d12749df87ee6df8ac5f60c9b59133a4bfae
13 changes: 8 additions & 5 deletions trunk/drivers/staging/rts5139/rts51x_transport.c
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ unsigned int rts51x_access_sglist(unsigned char *buffer,
return cnt;
}

unsigned int rts51x_access_xfer_buf(unsigned char *buffer,
static unsigned int rts51x_access_xfer_buf(unsigned char *buffer,
unsigned int buflen, struct scsi_cmnd *srb,
struct scatterlist **sgptr,
unsigned int *offset, enum xfer_buf_dir dir)
Expand Down Expand Up @@ -252,6 +252,8 @@ static int rts51x_msg_common(struct rts51x_chip *chip, struct urb *urb,
return status;
}

static int rts51x_clear_halt(struct rts51x_chip *chip, unsigned int pipe);

/*
* Interpret the results of a URB transfer
*/
Expand Down Expand Up @@ -359,7 +361,7 @@ int rts51x_ctrl_transfer(struct rts51x_chip *chip, unsigned int pipe,
rts51x->current_urb->actual_length);
}

int rts51x_clear_halt(struct rts51x_chip *chip, unsigned int pipe)
static int rts51x_clear_halt(struct rts51x_chip *chip, unsigned int pipe)
{
int result;
int endp = usb_pipeendpoint(pipe);
Expand Down Expand Up @@ -394,14 +396,14 @@ static void rts51x_sg_clean(struct usb_sg_request *io)
io->dev = NULL;
}

int rts51x_sg_init(struct usb_sg_request *io, struct usb_device *dev,
static int rts51x_sg_init(struct usb_sg_request *io, struct usb_device *dev,
unsigned pipe, unsigned period, struct scatterlist *sg,
int nents, size_t length, gfp_t mem_flags)
{
return usb_sg_init(io, dev, pipe, period, sg, nents, length, mem_flags);
}

int rts51x_sg_wait(struct usb_sg_request *io, int timeout)
static int rts51x_sg_wait(struct usb_sg_request *io, int timeout)
{
long timeleft;
int i;
Expand Down Expand Up @@ -532,7 +534,8 @@ static int rts51x_bulk_transfer_sglist(struct rts51x_chip *chip,
chip->usb->current_sg.bytes);
}

int rts51x_bulk_transfer_buf(struct rts51x_chip *chip, unsigned int pipe,
static int rts51x_bulk_transfer_buf(struct rts51x_chip *chip,
unsigned int pipe,
void *buf, unsigned int length,
unsigned int *act_len, int timeout)
{
Expand Down
6 changes: 0 additions & 6 deletions trunk/drivers/staging/rts5139/rts51x_transport.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,6 @@ unsigned int rts51x_access_sglist(unsigned char *buffer,
unsigned int buflen, void *sglist,
void **sgptr, unsigned int *offset,
enum xfer_buf_dir dir);
unsigned int rts51x_access_xfer_buf(unsigned char *buffer, unsigned int buflen,
struct scsi_cmnd *srb,
struct scatterlist **sgptr,
unsigned int *offset,
enum xfer_buf_dir dir);
void rts51x_set_xfer_buf(unsigned char *buffer, unsigned int buflen,
struct scsi_cmnd *srb);
void rts51x_get_xfer_buf(unsigned char *buffer, unsigned int buflen,
Expand All @@ -53,7 +48,6 @@ void rts51x_get_xfer_buf(unsigned char *buffer, unsigned int buflen,
int rts51x_ctrl_transfer(struct rts51x_chip *chip, unsigned int pipe,
u8 request, u8 requesttype, u16 value, u16 index,
void *data, u16 size, int timeout);
int rts51x_clear_halt(struct rts51x_chip *chip, unsigned int pipe);
int rts51x_transfer_data(struct rts51x_chip *chip, unsigned int pipe,
void *buf, unsigned int len, int use_sg,
unsigned int *act_len, int timeout);
Expand Down

0 comments on commit 5264e03

Please sign in to comment.