diff options
| author | Anton Blanchard <anton@samba.org> | 2003-05-03 02:26:02 +1000 |
|---|---|---|
| committer | Anton Blanchard <anton@samba.org> | 2003-05-03 02:26:02 +1000 |
| commit | de7924cb129f36cac058f77afa818da5ceeb6c05 (patch) | |
| tree | 799a98d9a470543d0695395df031cf0c220c957b /include/linux/usb.h | |
| parent | 1050d7c7f79dd394bb739e6faf989a302418d697 (diff) | |
| parent | eb0a5728e048e61e7802a0aa3e1dcd9d0353e78f (diff) | |
Merge samba.org:/scratch/anton/linux-2.5
into samba.org:/scratch/anton/tmp3
Diffstat (limited to 'include/linux/usb.h')
| -rw-r--r-- | include/linux/usb.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/usb.h b/include/linux/usb.h index cd50f3ede6d3..7ad72ec2c8ad 100644 --- a/include/linux/usb.h +++ b/include/linux/usb.h @@ -765,6 +765,7 @@ static inline void usb_fill_int_urb (struct urb *urb, urb->start_frame = -1; } +extern void usb_init_urb(struct urb *urb); extern struct urb *usb_alloc_urb(int iso_packets, int mem_flags); extern void usb_free_urb(struct urb *urb); #define usb_put_urb usb_free_urb @@ -973,7 +974,7 @@ void usb_show_device(struct usb_device *); void usb_show_string(struct usb_device *dev, char *id, int index); #ifdef DEBUG -#define dbg(format, arg...) printk(KERN_DEBUG __FILE__ ": " format "\n" , ## arg) +#define dbg(format, arg...) printk(KERN_DEBUG "%s: " format "\n" , __FILE__ , ## arg) #else #define dbg(format, arg...) do {} while (0) #endif |
