]> Pileus Git - ~andy/linux/commit
serial: ifx6x60: del_timer_sync must not be called in interrupt context.
authorJun Chen <jun.d.chen@intel.com>
Fri, 19 Oct 2012 13:51:30 +0000 (09:51 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 25 Oct 2012 18:29:58 +0000 (11:29 -0700)
commit2e30802625f5754e9a0ce478a447ed0f2376d4d4
treee7b488f15b183a70f7d520fe6acc2099d18e9c2a
parentc73ba2ae43fd4d69589caeecc5260a41be87b759
serial: ifx6x60: del_timer_sync must not be called in interrupt context.

This patch make use of del_timer instead of del_timer_sync in the
interrupt context.
The spi_timer function don't use any resources that may release after
running del_timer,
so using the del_timer is also safe and enough in this context.

Signed-off-by: Chen Jun <jun.d.chen@intel.com>
Acked-by: Alan Cox <alan@linux.intel.com>
Tested-by: Chuansheng Liu <chuansheng.liu@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/ifx6x60.c