mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-11 05:32:13 -04:00
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>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
6d608ef351
commit
52c5513d59
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user