Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 208150
b: refs/heads/master
c: 7c29440
h: refs/heads/master
v: v3
  • Loading branch information
Jarod Wilson authored and Mauro Carvalho Chehab committed Aug 9, 2010
1 parent 6e44022 commit 2e06efc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 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: 82ce67bf262b3f47ecb5a0ca31cace8ac72b7c98
refs/heads/master: 7c294402d58e22bb760c0e1a825eea5d582a8f2d
6 changes: 2 additions & 4 deletions trunk/drivers/media/IR/mceusb.c
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ static void mceusb_dev_printdata(struct mceusb_dev *ir, char *buf,
}
}

static void usb_async_callback(struct urb *urb, struct pt_regs *regs)
static void mce_async_callback(struct urb *urb, struct pt_regs *regs)
{
struct mceusb_dev *ir;
int len;
Expand Down Expand Up @@ -476,7 +476,7 @@ static void mce_request_packet(struct mceusb_dev *ir,
/* outbound data */
usb_fill_int_urb(async_urb, ir->usbdev,
usb_sndintpipe(ir->usbdev, ep->bEndpointAddress),
async_buf, size, (usb_complete_t) usb_async_callback,
async_buf, size, (usb_complete_t)mce_async_callback,
ir, ep->bInterval);
memcpy(async_buf, data, size);

Expand Down Expand Up @@ -919,7 +919,6 @@ static int __devinit mceusb_dev_probe(struct usb_interface *intf,
struct usb_endpoint_descriptor *ep = NULL;
struct usb_endpoint_descriptor *ep_in = NULL;
struct usb_endpoint_descriptor *ep_out = NULL;
struct usb_host_config *config;
struct mceusb_dev *ir = NULL;
int pipe, maxp, i;
char buf[63], name[128] = "";
Expand All @@ -929,7 +928,6 @@ static int __devinit mceusb_dev_probe(struct usb_interface *intf,

dev_dbg(&intf->dev, ": %s called\n", __func__);

config = dev->actconfig;
idesc = intf->cur_altsetting;

is_gen3 = usb_match_id(intf, gen3_list) ? 1 : 0;
Expand Down

0 comments on commit 2e06efc

Please sign in to comment.