Skip to content

Commit

Permalink
[PATCH] USB: fix usbatm gcc-2.95.x bug
Browse files Browse the repository at this point in the history
Work around the gcc-2.95.x macro expansion bug.

Cc: Duncan Sands <baldrick@free.fr>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Andrew Morton authored and Greg Kroah-Hartman committed Jun 27, 2005
1 parent 65412e4 commit 843c944
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/usb/atm/usbatm.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@

/* FIXME: move to dev_* once ATM is driver model aware */
#define atm_printk(level, instance, format, arg...) \
printk(level "ATM dev %d: " format , (instance)->atm_dev->number, ## arg)
printk(level "ATM dev %d: " format , \
(instance)->atm_dev->number , ## arg)

#define atm_err(instance, format, arg...) \
atm_printk(KERN_ERR, instance , format , ## arg)
Expand Down

0 comments on commit 843c944

Please sign in to comment.