diff options
| author | Harvey Harrison <[email protected]> | 2008-05-14 23:21:56 +0000 |
|---|---|---|
| committer | Kyle McMartin <[email protected]> | 2008-05-15 14:38:54 +0000 |
| commit | a8043ecb17bd2e4b034006bee315efeea3936278 (patch) | |
| tree | db1780acb16d95cc619d901bd9f850c5cae45c50 /drivers/parisc/asp.c | |
| parent | parisc: replace remaining __FUNCTION__ occurrences (diff) | |
| download | kernel-a8043ecb17bd2e4b034006bee315efeea3936278.tar.gz kernel-a8043ecb17bd2e4b034006bee315efeea3936278.zip | |
drivers/parisc: replace remaining __FUNCTION__ occurrences
__FUNCTION__ is gcc-specific, use __func__
Signed-off-by: Harvey Harrison <[email protected]>
Cc: Kyle McMartin <[email protected]>
Cc: Matthew Wilcox <[email protected]>
Cc: Grant Grundler <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Kyle McMartin <[email protected]>
Diffstat (limited to 'drivers/parisc/asp.c')
| -rw-r--r-- | drivers/parisc/asp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/parisc/asp.c b/drivers/parisc/asp.c index 558420bc9f88..821369135369 100644 --- a/drivers/parisc/asp.c +++ b/drivers/parisc/asp.c @@ -88,7 +88,7 @@ asp_init_chip(struct parisc_device *dev) ret = -EBUSY; dev->irq = gsc_claim_irq(&gsc_irq, ASP_GSC_IRQ); if (dev->irq < 0) { - printk(KERN_ERR "%s(): cannot get GSC irq\n", __FUNCTION__); + printk(KERN_ERR "%s(): cannot get GSC irq\n", __func__); goto out; } |
