From: Laurent Pinchart Date: Mon, 17 Feb 2014 10:27:49 +0000 (+0100) Subject: clocksource: sh_mtu2: Use request_irq() instead of setup_irq() X-Git-Tag: omap-for-v3.16/fixes-against-rc1~39^2~43^2~8^2~16 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=276bee05d8b72e98d530b55161e0a2131da99f58;p=pandora-kernel.git clocksource: sh_mtu2: Use request_irq() instead of setup_irq() The driver claims it needs to register an interrupt handler too early for request_irq(). This might have been true in the past, but the only meaningful difference between request_irq() and setup_irq() today is an additional kzalloc() call in request_irq(). As the driver calls kmalloc() itself we know that the slab allocator is available, we can thus switch to request_irq(). Signed-off-by: Laurent Pinchart Tested-by: Wolfram Sang --- Reading git-diff-tree failed