diff options
| author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-03-03 14:37:23 -0500 |
|---|---|---|
| committer | Ingo Molnar <mingo@elte.hu> | 2008-04-17 11:40:57 -0400 |
| commit | 77bf90ed66116a1fc0e2f0554ecac75a54290cc0 (patch) | |
| tree | 7b71df7149473be877dfa4488e7e5e154c2cd508 | |
| parent | 282bfe21cf0e2af9eac052c89bcc0a5ace80352f (diff) | |
x86: replace remaining __FUNCTION__ occurances
__FUNCTION__ is gcc-specific, use __func__
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
| -rw-r--r-- | arch/x86/kernel/alternative.c | 8 | ||||
| -rw-r--r-- | arch/x86/kernel/irq_32.c | 2 | ||||
| -rw-r--r-- | arch/x86/kernel/srat_32.c | 10 | ||||
| -rw-r--r-- | arch/x86/kernel/summit_32.c | 12 | ||||
| -rw-r--r-- | arch/x86/lguest/boot.c | 2 |
5 files changed, 17 insertions, 17 deletions
diff --git a/arch/x86/kernel/alternative.c b/arch/x86/kernel/alternative.c index 5fed98ca0e1f..e2d30b8e08a2 100644 --- a/arch/x86/kernel/alternative.c +++ b/arch/x86/kernel/alternative.c | |||
| @@ -205,7 +205,7 @@ void apply_alternatives(struct alt_instr *start, struct alt_instr *end) | |||
| 205 | struct alt_instr *a; | 205 | struct alt_instr *a; |
| 206 | char insnbuf[MAX_PATCH_LEN]; | 206 | char insnbuf[MAX_PATCH_LEN]; |
| 207 | 207 | ||
| 208 | DPRINTK("%s: alt table %p -> %p\n", __FUNCTION__, start, end); | 208 | DPRINTK("%s: alt table %p -> %p\n", __func__, start, end); |
| 209 | for (a = start; a < end; a++) { | 209 | for (a = start; a < end; a++) { |
| 210 | u8 *instr = a->instr; | 210 | u8 *instr = a->instr; |
| 211 | BUG_ON(a->replacementlen > a->instrlen); | 211 | BUG_ON(a->replacementlen > a->instrlen); |
| @@ -217,7 +217,7 @@ void apply_alternatives(struct alt_instr *start, struct alt_instr *end) | |||
| 217 | if (instr >= (u8 *)VSYSCALL_START && instr < (u8*)VSYSCALL_END) { | 217 | if (instr >= (u8 *)VSYSCALL_START && instr < (u8*)VSYSCALL_END) { |
| 218 | instr = __va(instr - (u8*)VSYSCALL_START + (u8*)__pa_symbol(&__vsyscall_0)); | 218 | instr = __va(instr - (u8*)VSYSCALL_START + (u8*)__pa_symbol(&__vsyscall_0)); |
| 219 | DPRINTK("%s: vsyscall fixup: %p => %p\n", | 219 | DPRINTK("%s: vsyscall fixup: %p => %p\n", |
| 220 | __FUNCTION__, a->instr, instr); | 220 | __func__, a->instr, instr); |
| 221 | } | 221 | } |
| 222 | #endif | 222 | #endif |
| 223 | memcpy(insnbuf, a->replacement, a->replacementlen); | 223 | memcpy(insnbuf, a->replacement, a->replacementlen); |
| @@ -307,7 +307,7 @@ void alternatives_smp_module_add(struct module *mod, char *name, | |||
| 307 | smp->text = text; | 307 | smp->text = text; |
| 308 | smp->text_end = text_end; | 308 | smp->text_end = text_end; |
| 309 | DPRINTK("%s: locks %p -> %p, text %p -> %p, name %s\n", | 309 | DPRINTK("%s: locks %p -> %p, text %p -> %p, name %s\n", |
| 310 | __FUNCTION__, smp->locks, smp->locks_end, | 310 | __func__, smp->locks, smp->locks_end, |
| 311 | smp->text, smp->text_end, smp->name); | 311 | smp->text, smp->text_end, smp->name); |
| 312 | 312 | ||
| 313 | spin_lock_irqsave(&smp_alt, flags); | 313 | spin_lock_irqsave(&smp_alt, flags); |
| @@ -332,7 +332,7 @@ void alternatives_smp_module_del(struct module *mod) | |||
| 332 | continue; | 332 | continue; |
| 333 | list_del(&item->next); | 333 | list_del(&item->next); |
| 334 | spin_unlock_irqrestore(&smp_alt, flags); | 334 | spin_unlock_irqrestore(&smp_alt, flags); |
| 335 | DPRINTK("%s: %s\n", __FUNCTION__, item->name); | 335 | DPRINTK("%s: %s\n", __func__, item->name); |
| 336 | kfree(item); | 336 | kfree(item); |
| 337 | return; | 337 | return; |
| 338 | } | 338 | } |
diff --git a/arch/x86/kernel/irq_32.c b/arch/x86/kernel/irq_32.c index cef054b09d27..6ea67b76a214 100644 --- a/arch/x86/kernel/irq_32.c +++ b/arch/x86/kernel/irq_32.c | |||
| @@ -79,7 +79,7 @@ unsigned int do_IRQ(struct pt_regs *regs) | |||
| 79 | 79 | ||
| 80 | if (unlikely((unsigned)irq >= NR_IRQS)) { | 80 | if (unlikely((unsigned)irq >= NR_IRQS)) { |
| 81 | printk(KERN_EMERG "%s: cannot handle IRQ %d\n", | 81 | printk(KERN_EMERG "%s: cannot handle IRQ %d\n", |
| 82 | __FUNCTION__, irq); | 82 | __func__, irq); |
| 83 | BUG(); | 83 | BUG(); |
| 84 | } | 84 | } |
| 85 | 85 | ||
diff --git a/arch/x86/kernel/srat_32.c b/arch/x86/kernel/srat_32.c index b72e61359c36..70e4a374b4e8 100644 --- a/arch/x86/kernel/srat_32.c +++ b/arch/x86/kernel/srat_32.c | |||
| @@ -277,14 +277,14 @@ int __init get_memcfg_from_srat(void) | |||
| 277 | rsdp_address = acpi_os_get_root_pointer(); | 277 | rsdp_address = acpi_os_get_root_pointer(); |
| 278 | if (!rsdp_address) { | 278 | if (!rsdp_address) { |
| 279 | printk("%s: System description tables not found\n", | 279 | printk("%s: System description tables not found\n", |
| 280 | __FUNCTION__); | 280 | __func__); |
| 281 | goto out_err; | 281 | goto out_err; |
| 282 | } | 282 | } |
| 283 | 283 | ||
| 284 | printk("%s: assigning address to rsdp\n", __FUNCTION__); | 284 | printk("%s: assigning address to rsdp\n", __func__); |
| 285 | rsdp = (struct acpi_table_rsdp *)(u32)rsdp_address; | 285 | rsdp = (struct acpi_table_rsdp *)(u32)rsdp_address; |
| 286 | if (!rsdp) { | 286 | if (!rsdp) { |
| 287 | printk("%s: Didn't find ACPI root!\n", __FUNCTION__); | 287 | printk("%s: Didn't find ACPI root!\n", __func__); |
| 288 | goto out_err; | 288 | goto out_err; |
| 289 | } | 289 | } |
| 290 | 290 | ||
| @@ -292,7 +292,7 @@ int __init get_memcfg_from_srat(void) | |||
| 292 | rsdp->oem_id); | 292 | rsdp->oem_id); |
| 293 | 293 | ||
| 294 | if (strncmp(rsdp->signature, ACPI_SIG_RSDP,strlen(ACPI_SIG_RSDP))) { | 294 | if (strncmp(rsdp->signature, ACPI_SIG_RSDP,strlen(ACPI_SIG_RSDP))) { |
| 295 | printk(KERN_WARNING "%s: RSDP table signature incorrect\n", __FUNCTION__); | 295 | printk(KERN_WARNING "%s: RSDP table signature incorrect\n", __func__); |
| 296 | goto out_err; | 296 | goto out_err; |
| 297 | } | 297 | } |
| 298 | 298 | ||
| @@ -302,7 +302,7 @@ int __init get_memcfg_from_srat(void) | |||
| 302 | if (!rsdt) { | 302 | if (!rsdt) { |
| 303 | printk(KERN_WARNING | 303 | printk(KERN_WARNING |
| 304 | "%s: ACPI: Invalid root system description tables (RSDT)\n", | 304 | "%s: ACPI: Invalid root system description tables (RSDT)\n", |
| 305 | __FUNCTION__); | 305 | __func__); |
| 306 | goto out_err; | 306 | goto out_err; |
| 307 | } | 307 | } |
| 308 | 308 | ||
diff --git a/arch/x86/kernel/summit_32.c b/arch/x86/kernel/summit_32.c index c7b579db843d..30f04c3e68e4 100644 --- a/arch/x86/kernel/summit_32.c +++ b/arch/x86/kernel/summit_32.c | |||
| @@ -47,7 +47,7 @@ static int __init setup_pci_node_map_for_wpeg(int wpeg_num, int last_bus) | |||
| 47 | } | 47 | } |
| 48 | } | 48 | } |
| 49 | if (i == rio_table_hdr->num_rio_dev) { | 49 | if (i == rio_table_hdr->num_rio_dev) { |
| 50 | printk(KERN_ERR "%s: Couldn't find owner Cyclone for Winnipeg!\n", __FUNCTION__); | 50 | printk(KERN_ERR "%s: Couldn't find owner Cyclone for Winnipeg!\n", __func__); |
| 51 | return last_bus; | 51 | return last_bus; |
| 52 | } | 52 | } |
| 53 | 53 | ||
| @@ -58,7 +58,7 @@ static int __init setup_pci_node_map_for_wpeg(int wpeg_num, int last_bus) | |||
| 58 | } | 58 | } |
| 59 | } | 59 | } |
| 60 | if (i == rio_table_hdr->num_scal_dev) { | 60 | if (i == rio_table_hdr->num_scal_dev) { |
| 61 | printk(KERN_ERR "%s: Couldn't find owner Twister for Cyclone!\n", __FUNCTION__); | 61 | printk(KERN_ERR "%s: Couldn't find owner Twister for Cyclone!\n", __func__); |
| 62 | return last_bus; | 62 | return last_bus; |
| 63 | } | 63 | } |
| 64 | 64 | ||
| @@ -88,7 +88,7 @@ static int __init setup_pci_node_map_for_wpeg(int wpeg_num, int last_bus) | |||
| 88 | num_buses = 9; | 88 | num_buses = 9; |
| 89 | break; | 89 | break; |
| 90 | default: | 90 | default: |
| 91 | printk(KERN_INFO "%s: Unsupported Winnipeg type!\n", __FUNCTION__); | 91 | printk(KERN_INFO "%s: Unsupported Winnipeg type!\n", __func__); |
| 92 | return last_bus; | 92 | return last_bus; |
| 93 | } | 93 | } |
| 94 | 94 | ||
| @@ -103,13 +103,13 @@ static int __init build_detail_arrays(void) | |||
| 103 | int i, scal_detail_size, rio_detail_size; | 103 | int i, scal_detail_size, rio_detail_size; |
| 104 | 104 | ||
| 105 | if (rio_table_hdr->num_scal_dev > MAX_NUMNODES) { | 105 | if (rio_table_hdr->num_scal_dev > MAX_NUMNODES) { |
| 106 | printk(KERN_WARNING "%s: MAX_NUMNODES too low! Defined as %d, but system has %d nodes.\n", __FUNCTION__, MAX_NUMNODES, rio_table_hdr->num_scal_dev); | 106 | printk(KERN_WARNING "%s: MAX_NUMNODES too low! Defined as %d, but system has %d nodes.\n", __func__, MAX_NUMNODES, rio_table_hdr->num_scal_dev); |
| 107 | return 0; | 107 | return 0; |
| 108 | } | 108 | } |
| 109 | 109 | ||
| 110 | switch (rio_table_hdr->version) { | 110 | switch (rio_table_hdr->version) { |
| 111 | default: | 111 | default: |
| 112 | printk(KERN_WARNING "%s: Invalid Rio Grande Table Version: %d\n", __FUNCTION__, rio_table_hdr->version); | 112 | printk(KERN_WARNING "%s: Invalid Rio Grande Table Version: %d\n", __func__, rio_table_hdr->version); |
| 113 | return 0; | 113 | return 0; |
| 114 | case 2: | 114 | case 2: |
| 115 | scal_detail_size = 11; | 115 | scal_detail_size = 11; |
| @@ -154,7 +154,7 @@ void __init setup_summit(void) | |||
| 154 | offset = *((unsigned short *)(ptr + offset)); | 154 | offset = *((unsigned short *)(ptr + offset)); |
| 155 | } | 155 | } |
| 156 | if (!rio_table_hdr) { | 156 | if (!rio_table_hdr) { |
| 157 | printk(KERN_ERR "%s: Unable to locate Rio Grande Table in EBDA - bailing!\n", __FUNCTION__); | 157 | printk(KERN_ERR "%s: Unable to locate Rio Grande Table in EBDA - bailing!\n", __func__); |
| 158 | return; | 158 | return; |
| 159 | } | 159 | } |
| 160 | 160 | ||
diff --git a/arch/x86/lguest/boot.c b/arch/x86/lguest/boot.c index 3335b4595efd..af65b2da3ba0 100644 --- a/arch/x86/lguest/boot.c +++ b/arch/x86/lguest/boot.c | |||
| @@ -661,7 +661,7 @@ static int lguest_clockevent_set_next_event(unsigned long delta, | |||
| 661 | if (delta < LG_CLOCK_MIN_DELTA) { | 661 | if (delta < LG_CLOCK_MIN_DELTA) { |
| 662 | if (printk_ratelimit()) | 662 | if (printk_ratelimit()) |
| 663 | printk(KERN_DEBUG "%s: small delta %lu ns\n", | 663 | printk(KERN_DEBUG "%s: small delta %lu ns\n", |
| 664 | __FUNCTION__, delta); | 664 | __func__, delta); |
| 665 | return -ETIME; | 665 | return -ETIME; |
| 666 | } | 666 | } |
| 667 | 667 | ||
