diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-04-30 03:55:10 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-30 11:29:54 -0400 |
commit | 71cc2c2152170b8166f59abb0604dc62073aeb92 (patch) | |
tree | a33d71f73b55fa1cb43d38fc108faba20b24b64c /drivers/serial/ioc4_serial.c | |
parent | bf9d89295233ae2ba7b312c78ee5657307b09f4c (diff) |
serial: replace remaining __FUNCTION__ occurrences
__FUNCTION__ is gcc-specific, use __func__
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/serial/ioc4_serial.c')
-rw-r--r-- | drivers/serial/ioc4_serial.c | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/drivers/serial/ioc4_serial.c b/drivers/serial/ioc4_serial.c index 0c179384fb0c..49b8a82b7b9f 100644 --- a/drivers/serial/ioc4_serial.c +++ b/drivers/serial/ioc4_serial.c | |||
@@ -889,7 +889,7 @@ static int inline port_init(struct ioc4_port *port) | |||
889 | 889 | ||
890 | ring_pci_addr = (unsigned long __iomem)port->ip_dma_ringbuf; | 890 | ring_pci_addr = (unsigned long __iomem)port->ip_dma_ringbuf; |
891 | DPRINT_CONFIG(("%s: ring_pci_addr 0x%lx\n", | 891 | DPRINT_CONFIG(("%s: ring_pci_addr 0x%lx\n", |
892 | __FUNCTION__, ring_pci_addr)); | 892 | __func__, ring_pci_addr)); |
893 | 893 | ||
894 | writel((unsigned int)((uint64_t)ring_pci_addr >> 32), sbbr_h); | 894 | writel((unsigned int)((uint64_t)ring_pci_addr >> 32), sbbr_h); |
895 | writel((unsigned int)ring_pci_addr | IOC4_BUF_SIZE_BIT, sbbr_l); | 895 | writel((unsigned int)ring_pci_addr | IOC4_BUF_SIZE_BIT, sbbr_l); |
@@ -1028,7 +1028,7 @@ static irqreturn_t ioc4_intr(int irq, void *arg) | |||
1028 | spin_lock_irqsave(&soft->is_ir_lock, flag); | 1028 | spin_lock_irqsave(&soft->is_ir_lock, flag); |
1029 | printk ("%s : %d : mem 0x%p sio_ir 0x%x sio_ies 0x%x " | 1029 | printk ("%s : %d : mem 0x%p sio_ir 0x%x sio_ies 0x%x " |
1030 | "other_ir 0x%x other_ies 0x%x mask 0x%x\n", | 1030 | "other_ir 0x%x other_ies 0x%x mask 0x%x\n", |
1031 | __FUNCTION__, __LINE__, | 1031 | __func__, __LINE__, |
1032 | (void *)mem, readl(&mem->sio_ir.raw), | 1032 | (void *)mem, readl(&mem->sio_ir.raw), |
1033 | readl(&mem->sio_ies.raw), | 1033 | readl(&mem->sio_ies.raw), |
1034 | readl(&mem->other_ir.raw), | 1034 | readl(&mem->other_ir.raw), |
@@ -1155,14 +1155,14 @@ static int inline ioc4_attach_local(struct ioc4_driver_data *idd) | |||
1155 | (TOTAL_RING_BUF_SIZE - 1)) == 0)); | 1155 | (TOTAL_RING_BUF_SIZE - 1)) == 0)); |
1156 | DPRINT_CONFIG(("%s : ip_cpu_ringbuf 0x%p " | 1156 | DPRINT_CONFIG(("%s : ip_cpu_ringbuf 0x%p " |
1157 | "ip_dma_ringbuf 0x%p\n", | 1157 | "ip_dma_ringbuf 0x%p\n", |
1158 | __FUNCTION__, | 1158 | __func__, |
1159 | (void *)port->ip_cpu_ringbuf, | 1159 | (void *)port->ip_cpu_ringbuf, |
1160 | (void *)port->ip_dma_ringbuf)); | 1160 | (void *)port->ip_dma_ringbuf)); |
1161 | port->ip_inring = RING(port, RX_0_OR_2); | 1161 | port->ip_inring = RING(port, RX_0_OR_2); |
1162 | port->ip_outring = RING(port, TX_0_OR_2); | 1162 | port->ip_outring = RING(port, TX_0_OR_2); |
1163 | } | 1163 | } |
1164 | DPRINT_CONFIG(("%s : port %d [addr 0x%p] control 0x%p", | 1164 | DPRINT_CONFIG(("%s : port %d [addr 0x%p] control 0x%p", |
1165 | __FUNCTION__, | 1165 | __func__, |
1166 | port_number, (void *)port, (void *)control)); | 1166 | port_number, (void *)port, (void *)control)); |
1167 | DPRINT_CONFIG((" ip_serial_regs 0x%p ip_uart_regs 0x%p\n", | 1167 | DPRINT_CONFIG((" ip_serial_regs 0x%p ip_uart_regs 0x%p\n", |
1168 | (void *)port->ip_serial_regs, | 1168 | (void *)port->ip_serial_regs, |
@@ -1173,7 +1173,7 @@ static int inline ioc4_attach_local(struct ioc4_driver_data *idd) | |||
1173 | 1173 | ||
1174 | DPRINT_CONFIG(("%s: port_number %d port 0x%p inring 0x%p " | 1174 | DPRINT_CONFIG(("%s: port_number %d port 0x%p inring 0x%p " |
1175 | "outring 0x%p\n", | 1175 | "outring 0x%p\n", |
1176 | __FUNCTION__, | 1176 | __func__, |
1177 | port_number, (void *)port, | 1177 | port_number, (void *)port, |
1178 | (void *)port->ip_inring, | 1178 | (void *)port->ip_inring, |
1179 | (void *)port->ip_outring)); | 1179 | (void *)port->ip_outring)); |
@@ -1317,7 +1317,7 @@ config_port(struct ioc4_port *port, | |||
1317 | int spiniter = 0; | 1317 | int spiniter = 0; |
1318 | 1318 | ||
1319 | DPRINT_CONFIG(("%s: baud %d byte_size %d stop %d parenb %d parodd %d\n", | 1319 | DPRINT_CONFIG(("%s: baud %d byte_size %d stop %d parenb %d parodd %d\n", |
1320 | __FUNCTION__, baud, byte_size, stop_bits, parenb, parodd)); | 1320 | __func__, baud, byte_size, stop_bits, parenb, parodd)); |
1321 | 1321 | ||
1322 | if (set_baud(port, baud)) | 1322 | if (set_baud(port, baud)) |
1323 | return 1; | 1323 | return 1; |
@@ -1725,7 +1725,7 @@ ioc4_change_speed(struct uart_port *the_port, | |||
1725 | } | 1725 | } |
1726 | baud = uart_get_baud_rate(the_port, new_termios, old_termios, | 1726 | baud = uart_get_baud_rate(the_port, new_termios, old_termios, |
1727 | MIN_BAUD_SUPPORTED, MAX_BAUD_SUPPORTED); | 1727 | MIN_BAUD_SUPPORTED, MAX_BAUD_SUPPORTED); |
1728 | DPRINT_CONFIG(("%s: returned baud %d\n", __FUNCTION__, baud)); | 1728 | DPRINT_CONFIG(("%s: returned baud %d\n", __func__, baud)); |
1729 | 1729 | ||
1730 | /* default is 9600 */ | 1730 | /* default is 9600 */ |
1731 | if (!baud) | 1731 | if (!baud) |
@@ -1765,7 +1765,7 @@ ioc4_change_speed(struct uart_port *the_port, | |||
1765 | DPRINT_CONFIG(("%s : port 0x%p cflag 0%o " | 1765 | DPRINT_CONFIG(("%s : port 0x%p cflag 0%o " |
1766 | "config_port(baud %d data %d stop %d p enable %d parity %d)," | 1766 | "config_port(baud %d data %d stop %d p enable %d parity %d)," |
1767 | " notification 0x%x\n", | 1767 | " notification 0x%x\n", |
1768 | __FUNCTION__, (void *)port, cflag, baud, new_data, new_stop, | 1768 | __func__, (void *)port, cflag, baud, new_data, new_stop, |
1769 | new_parity_enable, new_parity, the_port->ignore_status_mask)); | 1769 | new_parity_enable, new_parity, the_port->ignore_status_mask)); |
1770 | 1770 | ||
1771 | if ((config_port(port, baud, /* baud */ | 1771 | if ((config_port(port, baud, /* baud */ |
@@ -2715,7 +2715,7 @@ ioc4_serial_core_attach(struct pci_dev *pdev, int port_type) | |||
2715 | 2715 | ||
2716 | 2716 | ||
2717 | DPRINT_CONFIG(("%s: attach pdev 0x%p - control 0x%p\n", | 2717 | DPRINT_CONFIG(("%s: attach pdev 0x%p - control 0x%p\n", |
2718 | __FUNCTION__, pdev, (void *)control)); | 2718 | __func__, pdev, (void *)control)); |
2719 | 2719 | ||
2720 | if (!control) | 2720 | if (!control) |
2721 | return -ENODEV; | 2721 | return -ENODEV; |
@@ -2734,7 +2734,7 @@ ioc4_serial_core_attach(struct pci_dev *pdev, int port_type) | |||
2734 | port->ip_all_ports[port_type_idx] = the_port; | 2734 | port->ip_all_ports[port_type_idx] = the_port; |
2735 | 2735 | ||
2736 | DPRINT_CONFIG(("%s: attach the_port 0x%p / port 0x%p : type %s\n", | 2736 | DPRINT_CONFIG(("%s: attach the_port 0x%p / port 0x%p : type %s\n", |
2737 | __FUNCTION__, (void *)the_port, | 2737 | __func__, (void *)the_port, |
2738 | (void *)port, | 2738 | (void *)port, |
2739 | port_type == PROTO_RS232 ? "rs232" : "rs422")); | 2739 | port_type == PROTO_RS232 ? "rs232" : "rs422")); |
2740 | 2740 | ||
@@ -2752,7 +2752,7 @@ ioc4_serial_core_attach(struct pci_dev *pdev, int port_type) | |||
2752 | if (uart_add_one_port(u_driver, the_port) < 0) { | 2752 | if (uart_add_one_port(u_driver, the_port) < 0) { |
2753 | printk(KERN_WARNING | 2753 | printk(KERN_WARNING |
2754 | "%s: unable to add port %d bus %d\n", | 2754 | "%s: unable to add port %d bus %d\n", |
2755 | __FUNCTION__, the_port->line, pdev->bus->number); | 2755 | __func__, the_port->line, pdev->bus->number); |
2756 | } else { | 2756 | } else { |
2757 | DPRINT_CONFIG( | 2757 | DPRINT_CONFIG( |
2758 | ("IOC4 serial port %d irq = %d, bus %d\n", | 2758 | ("IOC4 serial port %d irq = %d, bus %d\n", |
@@ -2777,7 +2777,7 @@ ioc4_serial_attach_one(struct ioc4_driver_data *idd) | |||
2777 | int ret = 0; | 2777 | int ret = 0; |
2778 | 2778 | ||
2779 | 2779 | ||
2780 | DPRINT_CONFIG(("%s (0x%p, 0x%p)\n", __FUNCTION__, idd->idd_pdev, | 2780 | DPRINT_CONFIG(("%s (0x%p, 0x%p)\n", __func__, idd->idd_pdev, |
2781 | idd->idd_pci_id)); | 2781 | idd->idd_pci_id)); |
2782 | 2782 | ||
2783 | /* PCI-RT does not bring out serial connections. | 2783 | /* PCI-RT does not bring out serial connections. |
@@ -2806,7 +2806,7 @@ ioc4_serial_attach_one(struct ioc4_driver_data *idd) | |||
2806 | goto out2; | 2806 | goto out2; |
2807 | } | 2807 | } |
2808 | DPRINT_CONFIG(("%s : mem 0x%p, serial 0x%p\n", | 2808 | DPRINT_CONFIG(("%s : mem 0x%p, serial 0x%p\n", |
2809 | __FUNCTION__, (void *)idd->idd_misc_regs, | 2809 | __func__, (void *)idd->idd_misc_regs, |
2810 | (void *)serial)); | 2810 | (void *)serial)); |
2811 | 2811 | ||
2812 | /* Get memory for the new card */ | 2812 | /* Get memory for the new card */ |
@@ -2858,7 +2858,7 @@ ioc4_serial_attach_one(struct ioc4_driver_data *idd) | |||
2858 | } else { | 2858 | } else { |
2859 | printk(KERN_WARNING | 2859 | printk(KERN_WARNING |
2860 | "%s : request_irq fails for IRQ 0x%x\n ", | 2860 | "%s : request_irq fails for IRQ 0x%x\n ", |
2861 | __FUNCTION__, idd->idd_pdev->irq); | 2861 | __func__, idd->idd_pdev->irq); |
2862 | } | 2862 | } |
2863 | ret = ioc4_attach_local(idd); | 2863 | ret = ioc4_attach_local(idd); |
2864 | if (ret) | 2864 | if (ret) |
@@ -2911,13 +2911,13 @@ int ioc4_serial_init(void) | |||
2911 | if ((ret = uart_register_driver(&ioc4_uart_rs232)) < 0) { | 2911 | if ((ret = uart_register_driver(&ioc4_uart_rs232)) < 0) { |
2912 | printk(KERN_WARNING | 2912 | printk(KERN_WARNING |
2913 | "%s: Couldn't register rs232 IOC4 serial driver\n", | 2913 | "%s: Couldn't register rs232 IOC4 serial driver\n", |
2914 | __FUNCTION__); | 2914 | __func__); |
2915 | return ret; | 2915 | return ret; |
2916 | } | 2916 | } |
2917 | if ((ret = uart_register_driver(&ioc4_uart_rs422)) < 0) { | 2917 | if ((ret = uart_register_driver(&ioc4_uart_rs422)) < 0) { |
2918 | printk(KERN_WARNING | 2918 | printk(KERN_WARNING |
2919 | "%s: Couldn't register rs422 IOC4 serial driver\n", | 2919 | "%s: Couldn't register rs422 IOC4 serial driver\n", |
2920 | __FUNCTION__); | 2920 | __func__); |
2921 | return ret; | 2921 | return ret; |
2922 | } | 2922 | } |
2923 | 2923 | ||