Skip to content

Commit

Permalink
Fix for newer kernels
Browse files Browse the repository at this point in the history
  • Loading branch information
Erwin Rol committed Sep 1, 2008
1 parent 3bfaeb8 commit 19f34e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dmx_usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ static int dmx_usb_release (struct inode *inode, struct file *file);
static int dmx_usb_probe (struct usb_interface *interface, const struct usb_device_id *id);
static void dmx_usb_disconnect (struct usb_interface *interface);

static void dmx_usb_write_bulk_callback (struct urb *urb, struct pt_regs *regs);
static void dmx_usb_write_bulk_callback (struct urb *urb);

static struct file_operations dmx_usb_fops = {
/*
Expand Down Expand Up @@ -556,7 +556,7 @@ static int dmx_usb_ioctl (struct inode *inode, struct file *file, unsigned int c

/**
*/
static void dmx_usb_write_bulk_callback (struct urb *urb, struct pt_regs *regs)
static void dmx_usb_write_bulk_callback (struct urb *urb)
{
struct dmx_usb_device *dev = (struct dmx_usb_device *)urb->context;

Expand Down

0 comments on commit 19f34e1

Please sign in to comment.