diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-03-05 21:24:51 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2008-03-11 01:58:41 -0400 |
commit | 96b2dd1f1fdb9a131b7f2e79e5c7b2e4282cfcbf (patch) | |
tree | f47563e553c38cdf9571e3492ed816b2e6b129b2 /drivers/acpi/scan.c | |
parent | bd12935f04066df31903eaf74b1cec03319ecd2e (diff) |
ACPI: replace remaining __FUNCTION__ occurrences
__FUNCTION__ is gcc-specific, use __func__
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/scan.c')
-rw-r--r-- | drivers/acpi/scan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/scan.c b/drivers/acpi/scan.c index 3fac011f9cf9..b26e3019e1cc 100644 --- a/drivers/acpi/scan.c +++ b/drivers/acpi/scan.c | |||
@@ -966,7 +966,7 @@ static void acpi_device_set_id(struct acpi_device *device, | |||
966 | case ACPI_BUS_TYPE_DEVICE: | 966 | case ACPI_BUS_TYPE_DEVICE: |
967 | status = acpi_get_object_info(handle, &buffer); | 967 | status = acpi_get_object_info(handle, &buffer); |
968 | if (ACPI_FAILURE(status)) { | 968 | if (ACPI_FAILURE(status)) { |
969 | printk(KERN_ERR PREFIX "%s: Error reading device info\n", __FUNCTION__); | 969 | printk(KERN_ERR PREFIX "%s: Error reading device info\n", __func__); |
970 | return; | 970 | return; |
971 | } | 971 | } |
972 | 972 | ||