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/ioc3_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/ioc3_serial.c')
-rw-r--r-- | drivers/serial/ioc3_serial.c | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/drivers/serial/ioc3_serial.c b/drivers/serial/ioc3_serial.c index 168073f12cec..4f1af71e9a1b 100644 --- a/drivers/serial/ioc3_serial.c +++ b/drivers/serial/ioc3_serial.c | |||
@@ -52,7 +52,7 @@ static unsigned int Submodule_slot; | |||
52 | #define DPRINT_CONFIG(_x...) ; | 52 | #define DPRINT_CONFIG(_x...) ; |
53 | //#define DPRINT_CONFIG(_x...) printk _x | 53 | //#define DPRINT_CONFIG(_x...) printk _x |
54 | #define NOT_PROGRESS() ; | 54 | #define NOT_PROGRESS() ; |
55 | //#define NOT_PROGRESS() printk("%s : fails %d\n", __FUNCTION__, __LINE__) | 55 | //#define NOT_PROGRESS() printk("%s : fails %d\n", __func__, __LINE__) |
56 | 56 | ||
57 | /* number of characters we want to transmit to the lower level at a time */ | 57 | /* number of characters we want to transmit to the lower level at a time */ |
58 | #define MAX_CHARS 256 | 58 | #define MAX_CHARS 256 |
@@ -445,7 +445,7 @@ static int inline port_init(struct ioc3_port *port) | |||
445 | sbbr_h = &idd->vma->sbbr_h; | 445 | sbbr_h = &idd->vma->sbbr_h; |
446 | ring_pci_addr = (unsigned long __iomem)port->ip_dma_ringbuf; | 446 | ring_pci_addr = (unsigned long __iomem)port->ip_dma_ringbuf; |
447 | DPRINT_CONFIG(("%s: ring_pci_addr 0x%p\n", | 447 | DPRINT_CONFIG(("%s: ring_pci_addr 0x%p\n", |
448 | __FUNCTION__, (void *)ring_pci_addr)); | 448 | __func__, (void *)ring_pci_addr)); |
449 | 449 | ||
450 | writel((unsigned int)((uint64_t) ring_pci_addr >> 32), sbbr_h); | 450 | writel((unsigned int)((uint64_t) ring_pci_addr >> 32), sbbr_h); |
451 | writel((unsigned int)ring_pci_addr | BUF_SIZE_BIT, sbbr_l); | 451 | writel((unsigned int)ring_pci_addr | BUF_SIZE_BIT, sbbr_l); |
@@ -593,7 +593,7 @@ config_port(struct ioc3_port *port, | |||
593 | 593 | ||
594 | DPRINT_CONFIG(("%s: line %d baud %d byte_size %d stop %d parenb %d " | 594 | DPRINT_CONFIG(("%s: line %d baud %d byte_size %d stop %d parenb %d " |
595 | "parodd %d\n", | 595 | "parodd %d\n", |
596 | __FUNCTION__, ((struct uart_port *)port->ip_port)->line, | 596 | __func__, ((struct uart_port *)port->ip_port)->line, |
597 | baud, byte_size, stop_bits, parenb, parodd)); | 597 | baud, byte_size, stop_bits, parenb, parodd)); |
598 | 598 | ||
599 | if (set_baud(port, baud)) | 599 | if (set_baud(port, baud)) |
@@ -871,14 +871,14 @@ static int ioc3_set_proto(struct ioc3_port *port, int proto) | |||
871 | default: | 871 | default: |
872 | case PROTO_RS232: | 872 | case PROTO_RS232: |
873 | /* Clear the appropriate GIO pin */ | 873 | /* Clear the appropriate GIO pin */ |
874 | DPRINT_CONFIG(("%s: rs232\n", __FUNCTION__)); | 874 | DPRINT_CONFIG(("%s: rs232\n", __func__)); |
875 | writel(0, (&port->ip_idd->vma->gppr[0] | 875 | writel(0, (&port->ip_idd->vma->gppr[0] |
876 | + hooks->rs422_select_pin)); | 876 | + hooks->rs422_select_pin)); |
877 | break; | 877 | break; |
878 | 878 | ||
879 | case PROTO_RS422: | 879 | case PROTO_RS422: |
880 | /* Set the appropriate GIO pin */ | 880 | /* Set the appropriate GIO pin */ |
881 | DPRINT_CONFIG(("%s: rs422\n", __FUNCTION__)); | 881 | DPRINT_CONFIG(("%s: rs422\n", __func__)); |
882 | writel(1, (&port->ip_idd->vma->gppr[0] | 882 | writel(1, (&port->ip_idd->vma->gppr[0] |
883 | + hooks->rs422_select_pin)); | 883 | + hooks->rs422_select_pin)); |
884 | break; | 884 | break; |
@@ -988,7 +988,7 @@ ioc3_change_speed(struct uart_port *the_port, | |||
988 | } | 988 | } |
989 | baud = uart_get_baud_rate(the_port, new_termios, old_termios, | 989 | baud = uart_get_baud_rate(the_port, new_termios, old_termios, |
990 | MIN_BAUD_SUPPORTED, MAX_BAUD_SUPPORTED); | 990 | MIN_BAUD_SUPPORTED, MAX_BAUD_SUPPORTED); |
991 | DPRINT_CONFIG(("%s: returned baud %d for line %d\n", __FUNCTION__, baud, | 991 | DPRINT_CONFIG(("%s: returned baud %d for line %d\n", __func__, baud, |
992 | the_port->line)); | 992 | the_port->line)); |
993 | 993 | ||
994 | if (!the_port->fifosize) | 994 | if (!the_port->fifosize) |
@@ -1026,7 +1026,7 @@ ioc3_change_speed(struct uart_port *the_port, | |||
1026 | DPRINT_CONFIG(("%s : port 0x%p line %d cflag 0%o " | 1026 | DPRINT_CONFIG(("%s : port 0x%p line %d cflag 0%o " |
1027 | "config_port(baud %d data %d stop %d penable %d " | 1027 | "config_port(baud %d data %d stop %d penable %d " |
1028 | " parity %d), notification 0x%x\n", | 1028 | " parity %d), notification 0x%x\n", |
1029 | __FUNCTION__, (void *)port, the_port->line, cflag, baud, | 1029 | __func__, (void *)port, the_port->line, cflag, baud, |
1030 | new_data, new_stop, new_parity_enable, new_parity, | 1030 | new_data, new_stop, new_parity_enable, new_parity, |
1031 | the_port->ignore_status_mask)); | 1031 | the_port->ignore_status_mask)); |
1032 | 1032 | ||
@@ -1919,7 +1919,7 @@ static inline int ioc3_serial_core_attach( struct ioc3_submodule *is, | |||
1919 | struct pci_dev *pdev = idd->pdev; | 1919 | struct pci_dev *pdev = idd->pdev; |
1920 | 1920 | ||
1921 | DPRINT_CONFIG(("%s: attach pdev 0x%p - card_ptr 0x%p\n", | 1921 | DPRINT_CONFIG(("%s: attach pdev 0x%p - card_ptr 0x%p\n", |
1922 | __FUNCTION__, pdev, (void *)card_ptr)); | 1922 | __func__, pdev, (void *)card_ptr)); |
1923 | 1923 | ||
1924 | if (!card_ptr) | 1924 | if (!card_ptr) |
1925 | return -ENODEV; | 1925 | return -ENODEV; |
@@ -1933,7 +1933,7 @@ static inline int ioc3_serial_core_attach( struct ioc3_submodule *is, | |||
1933 | port->ip_port = the_port; | 1933 | port->ip_port = the_port; |
1934 | 1934 | ||
1935 | DPRINT_CONFIG(("%s: attach the_port 0x%p / port 0x%p [%d/%d]\n", | 1935 | DPRINT_CONFIG(("%s: attach the_port 0x%p / port 0x%p [%d/%d]\n", |
1936 | __FUNCTION__, (void *)the_port, (void *)port, | 1936 | __func__, (void *)the_port, (void *)port, |
1937 | phys_port, ii)); | 1937 | phys_port, ii)); |
1938 | 1938 | ||
1939 | /* membase, iobase and mapbase just need to be non-0 */ | 1939 | /* membase, iobase and mapbase just need to be non-0 */ |
@@ -1950,7 +1950,7 @@ static inline int ioc3_serial_core_attach( struct ioc3_submodule *is, | |||
1950 | if (uart_add_one_port(&ioc3_uart, the_port) < 0) { | 1950 | if (uart_add_one_port(&ioc3_uart, the_port) < 0) { |
1951 | printk(KERN_WARNING | 1951 | printk(KERN_WARNING |
1952 | "%s: unable to add port %d bus %d\n", | 1952 | "%s: unable to add port %d bus %d\n", |
1953 | __FUNCTION__, the_port->line, pdev->bus->number); | 1953 | __func__, the_port->line, pdev->bus->number); |
1954 | } else { | 1954 | } else { |
1955 | DPRINT_CONFIG(("IOC3 serial port %d irq %d bus %d\n", | 1955 | DPRINT_CONFIG(("IOC3 serial port %d irq %d bus %d\n", |
1956 | the_port->line, the_port->irq, pdev->bus->number)); | 1956 | the_port->line, the_port->irq, pdev->bus->number)); |
@@ -2017,7 +2017,7 @@ ioc3uart_probe(struct ioc3_submodule *is, struct ioc3_driver_data *idd) | |||
2017 | struct ioc3_port *ports[PORTS_PER_CARD]; | 2017 | struct ioc3_port *ports[PORTS_PER_CARD]; |
2018 | int phys_port; | 2018 | int phys_port; |
2019 | 2019 | ||
2020 | DPRINT_CONFIG(("%s (0x%p, 0x%p)\n", __FUNCTION__, is, idd)); | 2020 | DPRINT_CONFIG(("%s (0x%p, 0x%p)\n", __func__, is, idd)); |
2021 | 2021 | ||
2022 | card_ptr = kzalloc(sizeof(struct ioc3_card), GFP_KERNEL); | 2022 | card_ptr = kzalloc(sizeof(struct ioc3_card), GFP_KERNEL); |
2023 | if (!card_ptr) { | 2023 | if (!card_ptr) { |
@@ -2067,7 +2067,7 @@ ioc3uart_probe(struct ioc3_submodule *is, struct ioc3_driver_data *idd) | |||
2067 | 2067 | ||
2068 | DPRINT_CONFIG(("%s : Port A ip_serial_regs 0x%p " | 2068 | DPRINT_CONFIG(("%s : Port A ip_serial_regs 0x%p " |
2069 | "ip_uart_regs 0x%p\n", | 2069 | "ip_uart_regs 0x%p\n", |
2070 | __FUNCTION__, | 2070 | __func__, |
2071 | (void *)port->ip_serial_regs, | 2071 | (void *)port->ip_serial_regs, |
2072 | (void *)port->ip_uart_regs)); | 2072 | (void *)port->ip_uart_regs)); |
2073 | 2073 | ||
@@ -2082,7 +2082,7 @@ ioc3uart_probe(struct ioc3_submodule *is, struct ioc3_driver_data *idd) | |||
2082 | DPRINT_CONFIG(("%s : Port A ip_cpu_ringbuf 0x%p " | 2082 | DPRINT_CONFIG(("%s : Port A ip_cpu_ringbuf 0x%p " |
2083 | "ip_dma_ringbuf 0x%p, ip_inring 0x%p " | 2083 | "ip_dma_ringbuf 0x%p, ip_inring 0x%p " |
2084 | "ip_outring 0x%p\n", | 2084 | "ip_outring 0x%p\n", |
2085 | __FUNCTION__, | 2085 | __func__, |
2086 | (void *)port->ip_cpu_ringbuf, | 2086 | (void *)port->ip_cpu_ringbuf, |
2087 | (void *)port->ip_dma_ringbuf, | 2087 | (void *)port->ip_dma_ringbuf, |
2088 | (void *)port->ip_inring, | 2088 | (void *)port->ip_inring, |
@@ -2094,7 +2094,7 @@ ioc3uart_probe(struct ioc3_submodule *is, struct ioc3_driver_data *idd) | |||
2094 | 2094 | ||
2095 | DPRINT_CONFIG(("%s : Port B ip_serial_regs 0x%p " | 2095 | DPRINT_CONFIG(("%s : Port B ip_serial_regs 0x%p " |
2096 | "ip_uart_regs 0x%p\n", | 2096 | "ip_uart_regs 0x%p\n", |
2097 | __FUNCTION__, | 2097 | __func__, |
2098 | (void *)port->ip_serial_regs, | 2098 | (void *)port->ip_serial_regs, |
2099 | (void *)port->ip_uart_regs)); | 2099 | (void *)port->ip_uart_regs)); |
2100 | 2100 | ||
@@ -2108,7 +2108,7 @@ ioc3uart_probe(struct ioc3_submodule *is, struct ioc3_driver_data *idd) | |||
2108 | DPRINT_CONFIG(("%s : Port B ip_cpu_ringbuf 0x%p " | 2108 | DPRINT_CONFIG(("%s : Port B ip_cpu_ringbuf 0x%p " |
2109 | "ip_dma_ringbuf 0x%p, ip_inring 0x%p " | 2109 | "ip_dma_ringbuf 0x%p, ip_inring 0x%p " |
2110 | "ip_outring 0x%p\n", | 2110 | "ip_outring 0x%p\n", |
2111 | __FUNCTION__, | 2111 | __func__, |
2112 | (void *)port->ip_cpu_ringbuf, | 2112 | (void *)port->ip_cpu_ringbuf, |
2113 | (void *)port->ip_dma_ringbuf, | 2113 | (void *)port->ip_dma_ringbuf, |
2114 | (void *)port->ip_inring, | 2114 | (void *)port->ip_inring, |
@@ -2116,7 +2116,7 @@ ioc3uart_probe(struct ioc3_submodule *is, struct ioc3_driver_data *idd) | |||
2116 | } | 2116 | } |
2117 | 2117 | ||
2118 | DPRINT_CONFIG(("%s : port %d [addr 0x%p] card_ptr 0x%p", | 2118 | DPRINT_CONFIG(("%s : port %d [addr 0x%p] card_ptr 0x%p", |
2119 | __FUNCTION__, | 2119 | __func__, |
2120 | phys_port, (void *)port, (void *)card_ptr)); | 2120 | phys_port, (void *)port, (void *)card_ptr)); |
2121 | DPRINT_CONFIG((" ip_serial_regs 0x%p ip_uart_regs 0x%p\n", | 2121 | DPRINT_CONFIG((" ip_serial_regs 0x%p ip_uart_regs 0x%p\n", |
2122 | (void *)port->ip_serial_regs, | 2122 | (void *)port->ip_serial_regs, |
@@ -2127,7 +2127,7 @@ ioc3uart_probe(struct ioc3_submodule *is, struct ioc3_driver_data *idd) | |||
2127 | 2127 | ||
2128 | DPRINT_CONFIG(("%s: phys_port %d port 0x%p inring 0x%p " | 2128 | DPRINT_CONFIG(("%s: phys_port %d port 0x%p inring 0x%p " |
2129 | "outring 0x%p\n", | 2129 | "outring 0x%p\n", |
2130 | __FUNCTION__, | 2130 | __func__, |
2131 | phys_port, (void *)port, | 2131 | phys_port, (void *)port, |
2132 | (void *)port->ip_inring, | 2132 | (void *)port->ip_inring, |
2133 | (void *)port->ip_outring)); | 2133 | (void *)port->ip_outring)); |
@@ -2170,7 +2170,7 @@ static int __devinit ioc3uart_init(void) | |||
2170 | if ((ret = uart_register_driver(&ioc3_uart)) < 0) { | 2170 | if ((ret = uart_register_driver(&ioc3_uart)) < 0) { |
2171 | printk(KERN_WARNING | 2171 | printk(KERN_WARNING |
2172 | "%s: Couldn't register IOC3 uart serial driver\n", | 2172 | "%s: Couldn't register IOC3 uart serial driver\n", |
2173 | __FUNCTION__); | 2173 | __func__); |
2174 | return ret; | 2174 | return ret; |
2175 | } | 2175 | } |
2176 | ret = ioc3_register_submodule(&ioc3uart_submodule); | 2176 | ret = ioc3_register_submodule(&ioc3uart_submodule); |