Re: PATCH: Fix warning on 64bit boxes

From: Pete Zaitcev
Date: Tue Jan 17 2006 - 15:42:12 EST


On Tue, 17 Jan 2006 17:56:05 +0000, Alan Cox <alan@xxxxxxxxxxxxxxxxxxx> wrote:

> We cast an int to a void * which not unreasonably makes gcc suspicious.
> We don't actually care what type "type" is so use unsigned long so it
> matches pointer length on all platforms.
>
> Signed-off-by: Alan Cox <alan@xxxxxxxxxx>

> static int usu_probe(struct usb_interface *intf,
> const struct usb_device_id *id)
> {
> - int type;
> + unsigned long type;

Looks good to me.

Acked-by: Pete Zaitcev <zaitcev@xxxxxxxxxx>

-- Pete
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/