[IA64] remove remaining __FUNCTION__ occurrences
__FUNCTION__ is gcc-specific, use __func__ Long lines have been kept where they exist, some small spacing changes have been done. Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Tony Luck <tony.luck@intel.com>
This commit is contained in:

committed by
Tony Luck

parent
2d9b06c72a
commit
d4ed80841a
@@ -765,7 +765,7 @@ static void __init set_pci_cacheline_size(void)
|
||||
status = ia64_pal_cache_summary(&levels, &unique_caches);
|
||||
if (status != 0) {
|
||||
printk(KERN_ERR "%s: ia64_pal_cache_summary() failed "
|
||||
"(status=%ld)\n", __FUNCTION__, status);
|
||||
"(status=%ld)\n", __func__, status);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -773,7 +773,7 @@ static void __init set_pci_cacheline_size(void)
|
||||
/* cache_type (data_or_unified)= */ 2, &cci);
|
||||
if (status != 0) {
|
||||
printk(KERN_ERR "%s: ia64_pal_cache_config_info() failed "
|
||||
"(status=%ld)\n", __FUNCTION__, status);
|
||||
"(status=%ld)\n", __func__, status);
|
||||
return;
|
||||
}
|
||||
pci_cache_line_size = (1 << cci.pcci_line_size) / 4;
|
||||
|
Reference in New Issue
Block a user