diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-04-30 03:54:57 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-30 11:29:53 -0400 |
commit | 145980a0b07520f0f82cc40999acc92b349ea40c (patch) | |
tree | 48bc21442adcda4561b8f5356380cc168d059619 /drivers/parport/parport_gsc.c | |
parent | bdf4bbaaee3d4b8f555658333cbce1affe9070fb (diff) |
drivers: replace remaining __FUNCTION__ occurrences
__FUNCTION__ is gcc-specific, use __func__
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Cc: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/parport/parport_gsc.c')
-rw-r--r-- | drivers/parport/parport_gsc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/parport/parport_gsc.c b/drivers/parport/parport_gsc.c index 0e77ae2b71a0..e6a7e847ee80 100644 --- a/drivers/parport/parport_gsc.c +++ b/drivers/parport/parport_gsc.c | |||
@@ -365,11 +365,11 @@ static int __devinit parport_init_chip(struct parisc_device *dev) | |||
365 | if (boot_cpu_data.cpu_type > pcxt && !pdc_add_valid(port+4)) { | 365 | if (boot_cpu_data.cpu_type > pcxt && !pdc_add_valid(port+4)) { |
366 | 366 | ||
367 | /* Initialize bidirectional-mode (0x10) & data-tranfer-mode #1 (0x20) */ | 367 | /* Initialize bidirectional-mode (0x10) & data-tranfer-mode #1 (0x20) */ |
368 | printk("%s: initialize bidirectional-mode.\n", __FUNCTION__); | 368 | printk("%s: initialize bidirectional-mode.\n", __func__); |
369 | parport_writeb ( (0x10 + 0x20), port + 4); | 369 | parport_writeb ( (0x10 + 0x20), port + 4); |
370 | 370 | ||
371 | } else { | 371 | } else { |
372 | printk("%s: enhanced parport-modes not supported.\n", __FUNCTION__); | 372 | printk("%s: enhanced parport-modes not supported.\n", __func__); |
373 | } | 373 | } |
374 | 374 | ||
375 | p = parport_gsc_probe_port(port, 0, dev->irq, | 375 | p = parport_gsc_probe_port(port, 0, dev->irq, |