Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 249716
b: refs/heads/master
c: 968c659
h: refs/heads/master
v: v3
  • Loading branch information
matt mooney authored and Greg Kroah-Hartman committed May 17, 2011
1 parent cb536c4 commit 4d00618
Show file tree
Hide file tree
Showing 4 changed files with 6 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: 88d6f40839856552bed131f368f6cd33595c7496
refs/heads/master: 968c6595e7a3905f55a024e8e743dd823b26cdf8
2 changes: 1 addition & 1 deletion trunk/drivers/staging/usbip/userspace/libsrc/stub_driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ static int check_new(struct dlist *dlist, struct sysfs_device *target)
return 1;
}

static void delete_nothing(void *dev)
static void delete_nothing(void *dev __attribute__((unused)))
{
/* do not delete anything. but, its container will be deleted. */
}
Expand Down
3 changes: 2 additions & 1 deletion trunk/drivers/staging/usbip/userspace/src/usbip_network.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ void pack_usb_device(int pack, struct usb_device *udev)
pack_uint16_t(pack, &udev->bcdDevice);
}

void pack_usb_interface(int pack, struct usb_interface *udev)
void pack_usb_interface(int pack __attribute__((unused)),
struct usb_interface *udev __attribute__((unused)))
{
/* uint8_t members need nothing */
}
Expand Down
3 changes: 2 additions & 1 deletion trunk/drivers/staging/usbip/userspace/src/usbipd.c
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,8 @@ static void set_signal(void)
}


gboolean process_comming_request(GIOChannel *gio, GIOCondition condition, gpointer data)
gboolean process_comming_request(GIOChannel *gio, GIOCondition condition,
gpointer data __attribute__((unused)))
{
int ret;

Expand Down

0 comments on commit 4d00618

Please sign in to comment.