From: Victor Fusco Subject: [KJ] [PATCH 2.6.13-rc1 12/17] fix sparse warnings (__nocast type) Fix the sparse warning "implicit cast to nocast type" File/Subsystem: drivers/bluetooth/bpa10x.c Signed-off-by: Victor Fusco --- bpa10x.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletion(-) Index: quilt/drivers/bluetooth/bpa10x.c =================================================================== --- quilt.orig/drivers/bluetooth/bpa10x.c +++ quilt/drivers/bluetooth/bpa10x.c @@ -307,7 +307,9 @@ unlock: read_unlock(&data->lock); } -static inline struct urb *bpa10x_alloc_urb(struct usb_device *udev, unsigned int pipe, size_t size, int flags, void *data) +static inline struct urb *bpa10x_alloc_urb(struct usb_device *udev, unsigned int pipe, + size_t size, unsigned int __nocast flags, + void *data) { struct urb *urb; struct usb_ctrlrequest *cr;