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 | |
| 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>
| -rw-r--r-- | drivers/acpi/bus.c | 2 | ||||
| -rw-r--r-- | drivers/acpi/scan.c | 2 | ||||
| -rw-r--r-- | drivers/acpi/sleep/main.c | 2 | ||||
| -rw-r--r-- | drivers/acpi/utilities/utdebug.c | 2 | ||||
| -rw-r--r-- | drivers/acpi/video.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/drivers/acpi/bus.c b/drivers/acpi/bus.c index ce3c0a2cba..5b6760e0f9 100644 --- a/drivers/acpi/bus.c +++ b/drivers/acpi/bus.c | |||
| @@ -776,7 +776,7 @@ static int __init acpi_init(void) | |||
| 776 | 776 | ||
| 777 | acpi_kobj = kobject_create_and_add("acpi", firmware_kobj); | 777 | acpi_kobj = kobject_create_and_add("acpi", firmware_kobj); |
| 778 | if (!acpi_kobj) { | 778 | if (!acpi_kobj) { |
| 779 | printk(KERN_WARNING "%s: kset create error\n", __FUNCTION__); | 779 | printk(KERN_WARNING "%s: kset create error\n", __func__); |
| 780 | acpi_kobj = NULL; | 780 | acpi_kobj = NULL; |
| 781 | } | 781 | } |
| 782 | 782 | ||
diff --git a/drivers/acpi/scan.c b/drivers/acpi/scan.c index 3fac011f9c..b26e3019e1 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 | ||
diff --git a/drivers/acpi/sleep/main.c b/drivers/acpi/sleep/main.c index 293a1cbb47..d2f71a5472 100644 --- a/drivers/acpi/sleep/main.c +++ b/drivers/acpi/sleep/main.c | |||
| @@ -504,7 +504,7 @@ static void acpi_power_off_prepare(void) | |||
| 504 | static void acpi_power_off(void) | 504 | static void acpi_power_off(void) |
| 505 | { | 505 | { |
| 506 | /* acpi_sleep_prepare(ACPI_STATE_S5) should have already been called */ | 506 | /* acpi_sleep_prepare(ACPI_STATE_S5) should have already been called */ |
| 507 | printk("%s called\n", __FUNCTION__); | 507 | printk("%s called\n", __func__); |
| 508 | local_irq_disable(); | 508 | local_irq_disable(); |
| 509 | acpi_enable_wakeup_device(ACPI_STATE_S5); | 509 | acpi_enable_wakeup_device(ACPI_STATE_S5); |
| 510 | acpi_enter_sleep_state(ACPI_STATE_S5); | 510 | acpi_enter_sleep_state(ACPI_STATE_S5); |
diff --git a/drivers/acpi/utilities/utdebug.c b/drivers/acpi/utilities/utdebug.c index c7e128e536..7361204b1e 100644 --- a/drivers/acpi/utilities/utdebug.c +++ b/drivers/acpi/utilities/utdebug.c | |||
| @@ -109,7 +109,7 @@ void acpi_ut_track_stack_ptr(void) | |||
| 109 | * RETURN: Updated pointer to the function name | 109 | * RETURN: Updated pointer to the function name |
| 110 | * | 110 | * |
| 111 | * DESCRIPTION: Remove the "Acpi" prefix from the function name, if present. | 111 | * DESCRIPTION: Remove the "Acpi" prefix from the function name, if present. |
| 112 | * This allows compiler macros such as __FUNCTION__ to be used | 112 | * This allows compiler macros such as __func__ to be used |
| 113 | * with no change to the debug output. | 113 | * with no change to the debug output. |
| 114 | * | 114 | * |
| 115 | ******************************************************************************/ | 115 | ******************************************************************************/ |
diff --git a/drivers/acpi/video.c b/drivers/acpi/video.c index 12cce69b54..d64a142e5e 100644 --- a/drivers/acpi/video.c +++ b/drivers/acpi/video.c | |||
| @@ -1201,7 +1201,7 @@ static int acpi_video_bus_ROM_seq_show(struct seq_file *seq, void *offset) | |||
| 1201 | if (!video) | 1201 | if (!video) |
| 1202 | goto end; | 1202 | goto end; |
| 1203 | 1203 | ||
| 1204 | printk(KERN_INFO PREFIX "Please implement %s\n", __FUNCTION__); | 1204 | printk(KERN_INFO PREFIX "Please implement %s\n", __func__); |
| 1205 | seq_printf(seq, "<TODO>\n"); | 1205 | seq_printf(seq, "<TODO>\n"); |
| 1206 | 1206 | ||
| 1207 | end: | 1207 | end: |
