diff options
| author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-04-26 22:25:20 +0200 | 
|---|---|---|
| committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-04-26 22:25:20 +0200 | 
| commit | eb63963a55f039f049d0dd1121f91f332af6ecc9 (patch) | |
| tree | 42de9fdf101a1e45a60d43253057bc7435aef60d /drivers/ide/pci/siimage.c | |
| parent | c4b22f816b8ee316cff06df3880f8341e1251211 (diff) | |
| download | olio-linux-3.10-eb63963a55f039f049d0dd1121f91f332af6ecc9.tar.xz olio-linux-3.10-eb63963a55f039f049d0dd1121f91f332af6ecc9.zip  | |
ide: replace remaining __FUNCTION__ occurrences
__FUNCTION__ is gcc-specific, use __func__
[bart: fix checkpatch.pl errors in ide-lib.c and ppc/mpc8xx.c while at it]
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/pci/siimage.c')
| -rw-r--r-- | drivers/ide/pci/siimage.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ide/pci/siimage.c b/drivers/ide/pci/siimage.c index 3e4b9938070..faf5c3d6ab7 100644 --- a/drivers/ide/pci/siimage.c +++ b/drivers/ide/pci/siimage.c @@ -347,7 +347,7 @@ static int siimage_mmio_ide_dma_test_irq (ide_drive_t *drive)  			printk(KERN_WARNING "%s: sata_error = 0x%08x, "  				"watchdog = %d, %s\n",  				drive->name, sata_error, watchdog, -				__FUNCTION__); +				__func__);  		} else {  			watchdog = (ext_stat & 0x8000) ? 1 : 0;  |