[linux-usb-devel] [PATCH] USB: Remove unneeded void * casts in idmouse.c

2006-12-20 Thread Tobias Klauser
The patch removes unneeded void * casts for the following (void *) pointers: - struct file: private_data The patch also contains some whitespace and coding style cleanups in the relevant areas. Signed-off-by: Tobias Klauser <[EMAIL PROTECTED]> --- drivers/usb/misc/idmouse.c | 10 ---

[linux-usb-devel] [PATCH] drivers/usb/atm/ueagle-atm: Handle return value of usb_register()

2006-10-02 Thread Tobias Klauser
Handle the return value of usb_register() in the module_init function. Signed-off-by: Tobias Klauser <[EMAIL PROTECTED]> --- drivers/usb/atm/ueagle-atm.c |4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/drivers/usb/atm/ueagle-atm.c b/drivers/usb/atm/ueagle-atm.c

[linux-usb-devel] [PATCH] drivers/usb/core: Remove unneeded void * casts

2006-09-13 Thread Tobias Klauser
The patch removes unneeded casts for the following (void *) pointers: - struct file: private - struct urb: context - struct usb_bus: hcpriv - return value of kmalloc() The patch also contains some whitespace cleanup in the relevant areas. Signed-off-by: Tobias Klauser <[EMAIL PROTEC