summaryrefslogtreecommitdiff
path: root/drivers/tty/serial
diff options
context:
space:
mode:
authorFelipe Balbi <balbi@ti.com>2012-09-06 12:45:33 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-09-06 16:17:02 (GMT)
commit52c5513d5925554d1e22288525bcb7d25fa98b16 (patch)
treea8c8edfcef6717450821a058a31b654ac91bc32b /drivers/tty/serial
parent6d608ef351bbd0b49427b5b6c6ec6d7622bc0d22 (diff)
downloadlinux-fsl-qoriq-52c5513d5925554d1e22288525bcb7d25fa98b16.tar.xz
serial: omap: drop "inline" from IRQ handler prototype
it makes no sense to mark our IRQ handler inline since it's passed as a function pointer when enabling the IRQ line. Tested-by: Shubhrajyoti D <shubhrajyoti@ti.com> Signed-off-by: Felipe Balbi <balbi@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/serial')
-rw-r--r--drivers/tty/serial/omap-serial.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/omap-serial.c b/drivers/tty/serial/omap-serial.c
index 9068260..d244163 100644
--- a/drivers/tty/serial/omap-serial.c
+++ b/drivers/tty/serial/omap-serial.c
@@ -345,7 +345,7 @@ static void serial_omap_rdi(struct uart_omap_port *up, unsigned int lsr)
* @irq: uart port irq number
* @dev_id: uart port info
*/
-static inline irqreturn_t serial_omap_irq(int irq, void *dev_id)
+static irqreturn_t serial_omap_irq(int irq, void *dev_id)
{
struct uart_omap_port *up = dev_id;
struct tty_struct *tty = up->port.state->port.tty;