aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/firmware
diff options
context:
space:
mode:
authorHarvey Harrison <harvey.harrison@gmail.com>2008-04-29 03:59:19 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2008-04-29 11:06:03 -0400
commiteecd58536a97502153d4a2bd6f05038f657a1ab3 (patch)
treea5effaa2f7283f049faba47bc8d576d696e47208 /drivers/firmware
parent7d195a5409120277b800c42e846ee29cc667b777 (diff)
firmware: replace remaining __FUNCTION__ occurrences
__FUNCTION__ is gcc-specific, use __func__ Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Cc: Doug Warzecha <Douglas_Warzecha@dell.com> Cc: Matt Domsch <Matt_Domsch@dell.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/firmware')
-rw-r--r--drivers/firmware/dcdbas.c16
-rw-r--r--drivers/firmware/dell_rbu.c12
2 files changed, 14 insertions, 14 deletions
diff --git a/drivers/firmware/dcdbas.c b/drivers/firmware/dcdbas.c
index f235940719e7..25918f7dfd0f 100644
--- a/drivers/firmware/dcdbas.c
+++ b/drivers/firmware/dcdbas.c
@@ -63,7 +63,7 @@ static void smi_data_buf_free(void)
63 return; 63 return;
64 64
65 dev_dbg(&dcdbas_pdev->dev, "%s: phys: %x size: %lu\n", 65 dev_dbg(&dcdbas_pdev->dev, "%s: phys: %x size: %lu\n",
66 __FUNCTION__, smi_data_buf_phys_addr, smi_data_buf_size); 66 __func__, smi_data_buf_phys_addr, smi_data_buf_size);
67 67
68 dma_free_coherent(&dcdbas_pdev->dev, smi_data_buf_size, smi_data_buf, 68 dma_free_coherent(&dcdbas_pdev->dev, smi_data_buf_size, smi_data_buf,
69 smi_data_buf_handle); 69 smi_data_buf_handle);
@@ -92,7 +92,7 @@ static int smi_data_buf_realloc(unsigned long size)
92 if (!buf) { 92 if (!buf) {
93 dev_dbg(&dcdbas_pdev->dev, 93 dev_dbg(&dcdbas_pdev->dev,
94 "%s: failed to allocate memory size %lu\n", 94 "%s: failed to allocate memory size %lu\n",
95 __FUNCTION__, size); 95 __func__, size);
96 return -ENOMEM; 96 return -ENOMEM;
97 } 97 }
98 /* memory zeroed by dma_alloc_coherent */ 98 /* memory zeroed by dma_alloc_coherent */
@@ -110,7 +110,7 @@ static int smi_data_buf_realloc(unsigned long size)
110 smi_data_buf_size = size; 110 smi_data_buf_size = size;
111 111
112 dev_dbg(&dcdbas_pdev->dev, "%s: phys: %x size: %lu\n", 112 dev_dbg(&dcdbas_pdev->dev, "%s: phys: %x size: %lu\n",
113 __FUNCTION__, smi_data_buf_phys_addr, smi_data_buf_size); 113 __func__, smi_data_buf_phys_addr, smi_data_buf_size);
114 114
115 return 0; 115 return 0;
116} 116}
@@ -258,7 +258,7 @@ static int smi_request(struct smi_cmd *smi_cmd)
258 258
259 if (smi_cmd->magic != SMI_CMD_MAGIC) { 259 if (smi_cmd->magic != SMI_CMD_MAGIC) {
260 dev_info(&dcdbas_pdev->dev, "%s: invalid magic value\n", 260 dev_info(&dcdbas_pdev->dev, "%s: invalid magic value\n",
261 __FUNCTION__); 261 __func__);
262 return -EBADR; 262 return -EBADR;
263 } 263 }
264 264
@@ -267,7 +267,7 @@ static int smi_request(struct smi_cmd *smi_cmd)
267 set_cpus_allowed_ptr(current, &cpumask_of_cpu(0)); 267 set_cpus_allowed_ptr(current, &cpumask_of_cpu(0));
268 if (smp_processor_id() != 0) { 268 if (smp_processor_id() != 0) {
269 dev_dbg(&dcdbas_pdev->dev, "%s: failed to get CPU 0\n", 269 dev_dbg(&dcdbas_pdev->dev, "%s: failed to get CPU 0\n",
270 __FUNCTION__); 270 __func__);
271 ret = -EBUSY; 271 ret = -EBUSY;
272 goto out; 272 goto out;
273 } 273 }
@@ -428,7 +428,7 @@ static int host_control_smi(void)
428 428
429 default: 429 default:
430 dev_dbg(&dcdbas_pdev->dev, "%s: invalid SMI type %u\n", 430 dev_dbg(&dcdbas_pdev->dev, "%s: invalid SMI type %u\n",
431 __FUNCTION__, host_control_smi_type); 431 __func__, host_control_smi_type);
432 return -ENOSYS; 432 return -ENOSYS;
433 } 433 }
434 434
@@ -456,13 +456,13 @@ static void dcdbas_host_control(void)
456 host_control_action = HC_ACTION_NONE; 456 host_control_action = HC_ACTION_NONE;
457 457
458 if (!smi_data_buf) { 458 if (!smi_data_buf) {
459 dev_dbg(&dcdbas_pdev->dev, "%s: no SMI buffer\n", __FUNCTION__); 459 dev_dbg(&dcdbas_pdev->dev, "%s: no SMI buffer\n", __func__);
460 return; 460 return;
461 } 461 }
462 462
463 if (smi_data_buf_size < sizeof(struct apm_cmd)) { 463 if (smi_data_buf_size < sizeof(struct apm_cmd)) {
464 dev_dbg(&dcdbas_pdev->dev, "%s: SMI buffer too small\n", 464 dev_dbg(&dcdbas_pdev->dev, "%s: SMI buffer too small\n",
465 __FUNCTION__); 465 __func__);
466 return; 466 return;
467 } 467 }
468 468
diff --git a/drivers/firmware/dell_rbu.c b/drivers/firmware/dell_rbu.c
index 477a3d0e3caf..6a8b1e037e07 100644
--- a/drivers/firmware/dell_rbu.c
+++ b/drivers/firmware/dell_rbu.c
@@ -123,7 +123,7 @@ static int create_packet(void *data, size_t length)
123 if (!newpacket) { 123 if (!newpacket) {
124 printk(KERN_WARNING 124 printk(KERN_WARNING
125 "dell_rbu:%s: failed to allocate new " 125 "dell_rbu:%s: failed to allocate new "
126 "packet\n", __FUNCTION__); 126 "packet\n", __func__);
127 retval = -ENOMEM; 127 retval = -ENOMEM;
128 spin_lock(&rbu_data.lock); 128 spin_lock(&rbu_data.lock);
129 goto out_noalloc; 129 goto out_noalloc;
@@ -152,7 +152,7 @@ static int create_packet(void *data, size_t length)
152 printk(KERN_WARNING 152 printk(KERN_WARNING
153 "dell_rbu:%s: failed to allocate " 153 "dell_rbu:%s: failed to allocate "
154 "invalid_addr_packet_array \n", 154 "invalid_addr_packet_array \n",
155 __FUNCTION__); 155 __func__);
156 retval = -ENOMEM; 156 retval = -ENOMEM;
157 spin_lock(&rbu_data.lock); 157 spin_lock(&rbu_data.lock);
158 goto out_alloc_packet; 158 goto out_alloc_packet;
@@ -164,7 +164,7 @@ static int create_packet(void *data, size_t length)
164 if (!packet_data_temp_buf) { 164 if (!packet_data_temp_buf) {
165 printk(KERN_WARNING 165 printk(KERN_WARNING
166 "dell_rbu:%s: failed to allocate new " 166 "dell_rbu:%s: failed to allocate new "
167 "packet\n", __FUNCTION__); 167 "packet\n", __func__);
168 retval = -ENOMEM; 168 retval = -ENOMEM;
169 spin_lock(&rbu_data.lock); 169 spin_lock(&rbu_data.lock);
170 goto out_alloc_packet_array; 170 goto out_alloc_packet_array;
@@ -416,7 +416,7 @@ static int img_update_realloc(unsigned long size)
416 */ 416 */
417 if ((size != 0) && (rbu_data.image_update_buffer == NULL)) { 417 if ((size != 0) && (rbu_data.image_update_buffer == NULL)) {
418 printk(KERN_ERR "dell_rbu:%s: corruption " 418 printk(KERN_ERR "dell_rbu:%s: corruption "
419 "check failed\n", __FUNCTION__); 419 "check failed\n", __func__);
420 return -EINVAL; 420 return -EINVAL;
421 } 421 }
422 /* 422 /*
@@ -642,7 +642,7 @@ static ssize_t write_rbu_image_type(struct kobject *kobj,
642 if (req_firm_rc) { 642 if (req_firm_rc) {
643 printk(KERN_ERR 643 printk(KERN_ERR
644 "dell_rbu:%s request_firmware_nowait" 644 "dell_rbu:%s request_firmware_nowait"
645 " failed %d\n", __FUNCTION__, rc); 645 " failed %d\n", __func__, rc);
646 rc = -EIO; 646 rc = -EIO;
647 } else 647 } else
648 rbu_data.entry_created = 1; 648 rbu_data.entry_created = 1;
@@ -718,7 +718,7 @@ static int __init dcdrbu_init(void)
718 if (IS_ERR(rbu_device)) { 718 if (IS_ERR(rbu_device)) {
719 printk(KERN_ERR 719 printk(KERN_ERR
720 "dell_rbu:%s:platform_device_register_simple " 720 "dell_rbu:%s:platform_device_register_simple "
721 "failed\n", __FUNCTION__); 721 "failed\n", __func__);
722 return PTR_ERR(rbu_device); 722 return PTR_ERR(rbu_device);
723 } 723 }
724 724