From: Laurent Pinchart Date: Wed, 28 Jan 2015 23:09:24 +0000 (+0200) Subject: drm/irq: Don't disable vblank interrupts when already disabled X-Git-Tag: fixes-v4.0-rc1~91^2~6^2~3 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eb2ed66fe56f30c6ea841ac11681a2f51049b221;p=pandora-kernel.git drm/irq: Don't disable vblank interrupts when already disabled The .enable_vblank() operation is only called when vblank interrupts are disabled, but no similar check exists when disabling vblank interrupts. This leads to .disable_vblank() being called with vblank interrupts already disabled and the device possibly runtime suspended. As the operation is called with a spinlock held drivers can't runtime resume the device there and thus must avoid touching device registers in that case, requiring vblank refcounting. As the DRM core tracks whether vblank interrupts are enabled just skip the .disable_vblank() call when the interrupts are already disabled. Signed-off-by: Laurent Pinchart Reviewed-by: Michel Dänzer Signed-off-by: Daniel Vetter --- Reading git-diff-tree failed