Commit a562b03a authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] remove concatenation with __FUNCTION__ drivers/*

From: Tony Breeds <tony@bakeyournoodle.com>
parent 0f3fa4b0
...@@ -70,8 +70,8 @@ typedef enum { ...@@ -70,8 +70,8 @@ typedef enum {
#define TRACE(l, m, i...) \ #define TRACE(l, m, i...) \
{ \ { \
if ((ft_trace_t)(l) == FT_TRACE_TOP_LEVEL) { \ if ((ft_trace_t)(l) == FT_TRACE_TOP_LEVEL) { \
printk(KERN_INFO"ftape"__FILE__"("__FUNCTION__"):\n" \ printk(KERN_INFO"ftape%s(%s):\n" \
KERN_INFO m".\n" ,##i); \ KERN_INFO m".\n" ,__FILE__, __FUNCTION__ , ##i); \
} \ } \
} }
#define SET_TRACE_LEVEL(l) if ((l) == (l)) do {} while(0) #define SET_TRACE_LEVEL(l) if ((l) == (l)) do {} while(0)
......
...@@ -59,9 +59,9 @@ int rs_debug = TX3912_UART_DEBUG_ALL & ~TX3912_UART_DEBUG_TRANSMIT; ...@@ -59,9 +59,9 @@ int rs_debug = TX3912_UART_DEBUG_ALL & ~TX3912_UART_DEBUG_TRANSMIT;
#define rs_dprintk(f, str...) if (rs_debug & f) printk (str) #define rs_dprintk(f, str...) if (rs_debug & f) printk (str)
#define func_enter() rs_dprintk (TX3912_UART_DEBUG_FLOW, \ #define func_enter() rs_dprintk (TX3912_UART_DEBUG_FLOW, \
"rs: enter " __FUNCTION__ "\n") "rs: enter %s\n", __FUNCTION__)
#define func_exit() rs_dprintk (TX3912_UART_DEBUG_FLOW, \ #define func_exit() rs_dprintk (TX3912_UART_DEBUG_FLOW, \
"rs: exit " __FUNCTION__ "\n") "rs: exit %s\n", __FUNCTION__)
#else #else
#define rs_dprintk(f, str...) #define rs_dprintk(f, str...)
......
...@@ -151,7 +151,7 @@ static unsigned long next_heartbeat = 0; ...@@ -151,7 +151,7 @@ static unsigned long next_heartbeat = 0;
#ifndef ZF_DEBUG #ifndef ZF_DEBUG
# define dprintk(format, args...) # define dprintk(format, args...)
#else #else
# define dprintk(format, args...) printk(KERN_DEBUG PFX; ":" __FUNCTION__ ":%d: " format, __LINE__ , ## args) # define dprintk(format, args...) printk(KERN_DEBUG PFX ":%s:%d: " format, __FUNCTION__, __LINE__ , ## args)
#endif #endif
......
...@@ -106,8 +106,8 @@ static __inline__ void isdn_net_add_to_bundle(isdn_net_dev *nd, isdn_net_local * ...@@ -106,8 +106,8 @@ static __inline__ void isdn_net_add_to_bundle(isdn_net_dev *nd, isdn_net_local *
spin_lock_irqsave(&nd->queue_lock, flags); spin_lock_irqsave(&nd->queue_lock, flags);
lp = nd->queue; lp = nd->queue;
// printk(KERN_DEBUG __FUNCTION__": lp:%s(%p) nlp:%s(%p) last(%p)\n", // printk(KERN_DEBUG "%s: lp:%s(%p) nlp:%s(%p) last(%p)\n",
// lp->name, lp, nlp->name, nlp, lp->last); // __FUNCTION__, lp->name, lp, nlp->name, nlp, lp->last);
nlp->last = lp->last; nlp->last = lp->last;
lp->last->next = nlp; lp->last->next = nlp;
lp->last = nlp; lp->last = nlp;
...@@ -127,8 +127,8 @@ static __inline__ void isdn_net_rm_from_bundle(isdn_net_local *lp) ...@@ -127,8 +127,8 @@ static __inline__ void isdn_net_rm_from_bundle(isdn_net_local *lp)
if (lp->master) if (lp->master)
master_lp = (isdn_net_local *) lp->master->priv; master_lp = (isdn_net_local *) lp->master->priv;
// printk(KERN_DEBUG __FUNCTION__": lp:%s(%p) mlp:%s(%p) last(%p) next(%p) mndq(%p)\n", // printk(KERN_DEBUG "%s: lp:%s(%p) mlp:%s(%p) last(%p) next(%p) mndq(%p)\n",
// lp->name, lp, master_lp->name, master_lp, lp->last, lp->next, master_lp->netdev->queue); // __FUNCTION__, lp->name, lp, master_lp->name, master_lp, lp->last, lp->next, master_lp->netdev->queue);
spin_lock_irqsave(&master_lp->netdev->queue_lock, flags); spin_lock_irqsave(&master_lp->netdev->queue_lock, flags);
lp->last->next = lp->next; lp->last->next = lp->next;
lp->next->last = lp->last; lp->next->last = lp->last;
...@@ -139,8 +139,8 @@ static __inline__ void isdn_net_rm_from_bundle(isdn_net_local *lp) ...@@ -139,8 +139,8 @@ static __inline__ void isdn_net_rm_from_bundle(isdn_net_local *lp)
} }
} }
lp->next = lp->last = lp; /* (re)set own pointers */ lp->next = lp->last = lp; /* (re)set own pointers */
// printk(KERN_DEBUG __FUNCTION__": mndq(%p)\n", // printk(KERN_DEBUG "%s: mndq(%p)\n",
// master_lp->netdev->queue); // __FUNCTION__, master_lp->netdev->queue);
spin_unlock_irqrestore(&master_lp->netdev->queue_lock, flags); spin_unlock_irqrestore(&master_lp->netdev->queue_lock, flags);
} }
......
...@@ -63,7 +63,7 @@ ...@@ -63,7 +63,7 @@
//#define DEBUG // Undef me for production //#define DEBUG // Undef me for production
#ifdef DEBUG #ifdef DEBUG
#define DPRINTF(x, a...) printk(KERN_DEBUG "W9966: "__FUNCTION__ "(): "x, ##a) #define DPRINTF(x, a...) printk(KERN_DEBUG "W9966: %s(): "x, __FUNCTION__ , ##a)
#else #else
#define DPRINTF(x...) #define DPRINTF(x...)
#endif #endif
......
...@@ -1575,7 +1575,7 @@ static int cfi_intelext_lock(struct mtd_info *mtd, loff_t ofs, size_t len) ...@@ -1575,7 +1575,7 @@ static int cfi_intelext_lock(struct mtd_info *mtd, loff_t ofs, size_t len)
ofs, len, DO_XXLOCK_ONEBLOCK_LOCK); ofs, len, DO_XXLOCK_ONEBLOCK_LOCK);
#ifdef DEBUG_LOCK_BITS #ifdef DEBUG_LOCK_BITS
printk(KERN_DEBUG __FUNCTION__ printk(KERN_DEBUG
"%s: lock status after, ret=%d\n", __FUNCTION__, ret); "%s: lock status after, ret=%d\n", __FUNCTION__, ret);
cfi_intelext_varsize_frob(mtd, do_printlockstatus_oneblock, cfi_intelext_varsize_frob(mtd, do_printlockstatus_oneblock,
ofs, len, 0); ofs, len, 0);
......
...@@ -224,7 +224,7 @@ static int get_power_status (struct hotplug_slot *hotplug_slot, u8 *value) ...@@ -224,7 +224,7 @@ static int get_power_status (struct hotplug_slot *hotplug_slot, u8 *value)
if (slot == NULL) if (slot == NULL)
return -ENODEV; return -ENODEV;
dbg(__FUNCTION__" - physical_slot = %s\n", hotplug_slot->name); dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
/* /*
* Fill in logic to get the current power status of the specific * Fill in logic to get the current power status of the specific
...@@ -242,7 +242,7 @@ static int get_attention_status (struct hotplug_slot *hotplug_slot, u8 *value) ...@@ -242,7 +242,7 @@ static int get_attention_status (struct hotplug_slot *hotplug_slot, u8 *value)
if (slot == NULL) if (slot == NULL)
return -ENODEV; return -ENODEV;
dbg(__FUNCTION__" - physical_slot = %s\n", hotplug_slot->name); dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
/* /*
* Fill in logic to get the current attention status of the specific * Fill in logic to get the current attention status of the specific
...@@ -260,7 +260,7 @@ static int get_latch_status (struct hotplug_slot *hotplug_slot, u8 *value) ...@@ -260,7 +260,7 @@ static int get_latch_status (struct hotplug_slot *hotplug_slot, u8 *value)
if (slot == NULL) if (slot == NULL)
return -ENODEV; return -ENODEV;
dbg(__FUNCTION__" - physical_slot = %s\n", hotplug_slot->name); dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
/* /*
* Fill in logic to get the current latch status of the specific * Fill in logic to get the current latch status of the specific
...@@ -278,7 +278,7 @@ static int get_adapter_status (struct hotplug_slot *hotplug_slot, u8 *value) ...@@ -278,7 +278,7 @@ static int get_adapter_status (struct hotplug_slot *hotplug_slot, u8 *value)
if (slot == NULL) if (slot == NULL)
return -ENODEV; return -ENODEV;
dbg(__FUNCTION__" - physical_slot = %s\n", hotplug_slot->name); dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
/* /*
* Fill in logic to get the current adapter status of the specific * Fill in logic to get the current adapter status of the specific
...@@ -296,7 +296,7 @@ static void release_slots(struct hotplug_slot *hotplug_slot) ...@@ -296,7 +296,7 @@ static void release_slots(struct hotplug_slot *hotplug_slot)
if (slot == NULL) if (slot == NULL)
return -ENODEV; return -ENODEV;
dbg(__FUNCTION__" - physical_slot = %s\n", hotplug_slot->name); dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
kfree(slot->hotplug_slot->info); kfree(slot->hotplug_slot->info);
kfree(slot->hotplug_slot->name); kfree(slot->hotplug_slot->name);
kfree(slot->hotplug_slot); kfree(slot->hotplug_slot);
......
...@@ -101,7 +101,7 @@ pfs168_pcmcia_configure_socket(struct sa1100_pcmcia_socket *skt, ...@@ -101,7 +101,7 @@ pfs168_pcmcia_configure_socket(struct sa1100_pcmcia_socket *skt,
} }
if (state->Vpp != state->Vcc && state->Vpp != 0) { if (state->Vpp != state->Vcc && state->Vpp != 0) {
printk(KERN_ERR "%s(): CompactFlash socket does not support VPP %uV\n" printk(KERN_ERR "%s(): CompactFlash socket does not support VPP %uV\n",
__FUNCTION__, state->Vpp / 10); __FUNCTION__, state->Vpp / 10);
return -1; return -1;
} }
......
...@@ -74,19 +74,19 @@ shannon_pcmcia_configure_socket(struct sa1100_pcmcia_socket *skt, ...@@ -74,19 +74,19 @@ shannon_pcmcia_configure_socket(struct sa1100_pcmcia_socket *skt,
{ {
switch (state->Vcc) { switch (state->Vcc) {
case 0: /* power off */ case 0: /* power off */
printk(KERN_WARNING __FUNCTION__"(): CS asked for 0V, still applying 3.3V..\n"); printk(KERN_WARNING "%s(): CS asked for 0V, still applying 3.3V..\n", __FUNCTION__);
break; break;
case 50: case 50:
printk(KERN_WARNING __FUNCTION__"(): CS asked for 5V, applying 3.3V..\n"); printk(KERN_WARNING "%s(): CS asked for 5V, applying 3.3V..\n", __FUNCTION__);
case 33: case 33:
break; break;
default: default:
printk(KERN_ERR __FUNCTION__"(): unrecognized Vcc %u\n", printk(KERN_ERR "%s(): unrecognized Vcc %u\n",
state->Vcc); __FUNCTION__, state->Vcc);
return -1; return -1;
} }
printk(KERN_WARNING __FUNCTION__"(): Warning, Can't perform reset\n"); printk(KERN_WARNING "%s(): Warning, Can't perform reset\n", __FUNCTION__);
/* Silently ignore Vpp, output enable, speaker enable. */ /* Silently ignore Vpp, output enable, speaker enable. */
......
...@@ -50,7 +50,7 @@ static void stork_pcmcia_hw_shutdown(struct sa1100_pcmcia_socket *skt) ...@@ -50,7 +50,7 @@ static void stork_pcmcia_hw_shutdown(struct sa1100_pcmcia_socket *skt)
{ {
int i; int i;
printk(__FUNCTION__ "\n"); printk("%s\n", __FUNCTION__);
/* disable IRQs */ /* disable IRQs */
sa11xx_free_irqs(skt, irqs, ARRAY_SIZE(irqs)); sa11xx_free_irqs(skt, irqs, ARRAY_SIZE(irqs));
...@@ -68,7 +68,7 @@ stork_pcmcia_socket_state(struct sa1100_pcmcia_socket *skt, ...@@ -68,7 +68,7 @@ stork_pcmcia_socket_state(struct sa1100_pcmcia_socket *skt,
unsigned long levels = GPLR; unsigned long levels = GPLR;
if (debug > 1) if (debug > 1)
printk(__FUNCTION__ " GPLR=%x IRQ[1:0]=%x\n", levels, printk("%s GPLR=%x IRQ[1:0]=%x\n", __FUNCTION__, levels,
(levels & (GPIO_STORK_PCMCIA_A_RDY|GPIO_STORK_PCMCIA_B_RDY))); (levels & (GPIO_STORK_PCMCIA_A_RDY|GPIO_STORK_PCMCIA_B_RDY)));
switch (skt->nr) { switch (skt->nr) {
......
...@@ -76,13 +76,13 @@ yopy_pcmcia_configure_socket(struct sa1100_pcmcia_socket *skt, ...@@ -76,13 +76,13 @@ yopy_pcmcia_configure_socket(struct sa1100_pcmcia_socket *skt,
pcmcia_power(0); pcmcia_power(0);
break; break;
case 50: case 50:
printk(KERN_WARNING __FUNCTION__"(): CS asked for 5V, applying 3.3V..\n"); printk(KERN_WARNING "%s(): CS asked for 5V, applying 3.3V..\n", __FUNCTION__);
case 33: case 33:
pcmcia_power(1); pcmcia_power(1);
break; break;
default: default:
printk(KERN_ERR __FUNCTION__"(): unrecognized Vcc %u\n", printk(KERN_ERR "%s(): unrecognized Vcc %u\n",
state->Vcc); __FUNCTION__, state->Vcc);
return -1; return -1;
} }
......
...@@ -90,7 +90,7 @@ static void print_commandk (unsigned char *command) ...@@ -90,7 +90,7 @@ static void print_commandk (unsigned char *command)
int i, s; int i, s;
printk(KERN_DEBUG); printk(KERN_DEBUG);
print_opcodek(command[0]); print_opcodek(command[0]);
/*printk(KERN_DEBUG __FUNCTION__ " ");*/ /*printk(KERN_DEBUG "%s ", __FUNCTION__);*/
if ((command[0] >> 5) == 6 || if ((command[0] >> 5) == 6 ||
(command[0] >> 5) == 7 ) { (command[0] >> 5) == 7 ) {
s = 12; /* vender specific */ s = 12; /* vender specific */
......
...@@ -74,7 +74,7 @@ static int __init lk201_reset(struct dec_serial *info) ...@@ -74,7 +74,7 @@ static int __init lk201_reset(struct dec_serial *info)
for (i = 0; i < sizeof(lk201_reset_string); i++) for (i = 0; i < sizeof(lk201_reset_string); i++)
if (info->hook->poll_tx_char(info, lk201_reset_string[i])) { if (info->hook->poll_tx_char(info, lk201_reset_string[i])) {
printk(__FUNCTION__" transmit timeout\n"); printk("%s transmit timeout\n", __FUNCTION__);
return -EIO; return -EIO;
} }
return 0; return 0;
......
...@@ -1988,7 +1988,8 @@ unsigned int register_zs_hook(unsigned int channel, struct zs_hook *hook) ...@@ -1988,7 +1988,8 @@ unsigned int register_zs_hook(unsigned int channel, struct zs_hook *hook)
struct dec_serial *info = &zs_soft[channel]; struct dec_serial *info = &zs_soft[channel];
if (info->hook) { if (info->hook) {
printk(__FUNCTION__": line %d has already a hook registered\n", channel); printk("%s: line %d has already a hook registered\n",
__FUNCTION__, channel);
return 0; return 0;
} else { } else {
...@@ -2015,8 +2016,8 @@ unsigned int unregister_zs_hook(unsigned int channel) ...@@ -2015,8 +2016,8 @@ unsigned int unregister_zs_hook(unsigned int channel)
info->hook = NULL; info->hook = NULL;
return 1; return 1;
} else { } else {
printk(__FUNCTION__": trying to unregister hook on line %d," printk("%s: trying to unregister hook on line %d,"
" but none is registered\n", channel); " but none is registered\n", __FUNCTION__, channel);
return 0; return 0;
} }
} }
......
...@@ -503,7 +503,7 @@ static int kobil_write (struct usb_serial_port *port, int from_user, ...@@ -503,7 +503,7 @@ static int kobil_write (struct usb_serial_port *port, int from_user,
static int kobil_write_room (struct usb_serial_port *port) static int kobil_write_room (struct usb_serial_port *port)
{ {
//dbg(__FUNCTION__ " - port %d", port->number); //dbg("%s - port %d", __FUNCTION__, port->number);
return 8; return 8;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment