[PATCH] USB: fix build warning in usb core as pointed out by Andrew.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> Index: gregkh-2.6/drivers/usb/core/usb.c ===================================================================
This commit is contained in:

committed by
Greg Kroah-Hartman

parent
126eddfbf8
commit
ff710710ea
@@ -492,7 +492,7 @@ static int __find_interface(struct device * dev, void * data)
|
|||||||
*/
|
*/
|
||||||
struct usb_interface *usb_find_interface(struct usb_driver *drv, int minor)
|
struct usb_interface *usb_find_interface(struct usb_driver *drv, int minor)
|
||||||
{
|
{
|
||||||
struct usb_interface *intf = (struct usb_interface *)minor;
|
struct usb_interface *intf = (struct usb_interface *)(long)minor;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
ret = driver_for_each_device(&drv->driver, NULL, &intf, __find_interface);
|
ret = driver_for_each_device(&drv->driver, NULL, &intf, __find_interface);
|
||||||
|
Reference in New Issue
Block a user