lantiq: Make ATM and PTM drivers compatible with kernel 4.1
Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> SVN-Revision: 46218
This commit is contained in:
parent
243d347a6d
commit
4c8227539e
3 changed files with 12 additions and 0 deletions
|
@ -1818,7 +1818,11 @@ static int ltq_atm_probe(struct platform_device *pdev)
|
|||
}
|
||||
|
||||
/* register interrupt handler */
|
||||
#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,1,0)
|
||||
ret = request_irq(PPE_MAILBOX_IGU1_INT, mailbox_irq_handler, 0, "atm_mailbox_isr", &g_atm_priv_data);
|
||||
#else
|
||||
ret = request_irq(PPE_MAILBOX_IGU1_INT, mailbox_irq_handler, IRQF_DISABLED, "atm_mailbox_isr", &g_atm_priv_data);
|
||||
#endif
|
||||
if ( ret ) {
|
||||
if ( ret == -EBUSY ) {
|
||||
pr_err("IRQ may be occupied by other driver, please reconfig to disable it.\n");
|
||||
|
|
|
@ -1455,7 +1455,11 @@ static int ifx_ptm_init(void)
|
|||
}
|
||||
|
||||
/* register interrupt handler */
|
||||
#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,1,0)
|
||||
ret = request_irq(PPE_MAILBOX_IGU1_INT, mailbox_irq_handler, 0, "ptm_mailbox_isr", &g_ptm_priv_data);
|
||||
#else
|
||||
ret = request_irq(PPE_MAILBOX_IGU1_INT, mailbox_irq_handler, IRQF_DISABLED, "ptm_mailbox_isr", &g_ptm_priv_data);
|
||||
#endif
|
||||
if ( ret ) {
|
||||
if ( ret == -EBUSY ) {
|
||||
err("IRQ may be occupied by other driver, please reconfig to disable it.");
|
||||
|
|
|
@ -964,7 +964,11 @@ static int ifx_ptm_init(void)
|
|||
}
|
||||
|
||||
/* register interrupt handler */
|
||||
#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,1,0)
|
||||
ret = request_irq(PPE_MAILBOX_IGU1_INT, mailbox_irq_handler, 0, "ptm_mailbox_isr", &g_ptm_priv_data);
|
||||
#else
|
||||
ret = request_irq(PPE_MAILBOX_IGU1_INT, mailbox_irq_handler, IRQF_DISABLED, "ptm_mailbox_isr", &g_ptm_priv_data);
|
||||
#endif
|
||||
if ( ret ) {
|
||||
if ( ret == -EBUSY ) {
|
||||
err("IRQ may be occupied by other driver, please reconfig to disable it.");
|
||||
|
|
Loading…
Reference in a new issue