drm/irq: BUG_ON() -> WARN_ON()
Let's make things a bit easier to debug when things go bad (potentially under console_lock). Signed-off-by: Rob Clark <robdclark@gmail.com> Reviewed-by: Michel Dänzer <michel.daenzer@amd.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
881fdaa5e4
commit
7f907bf284
1 changed files with 2 additions and 1 deletions
|
@ -1029,7 +1029,8 @@ void drm_vblank_put(struct drm_device *dev, int crtc)
|
||||||
{
|
{
|
||||||
struct drm_vblank_crtc *vblank = &dev->vblank[crtc];
|
struct drm_vblank_crtc *vblank = &dev->vblank[crtc];
|
||||||
|
|
||||||
BUG_ON(atomic_read(&vblank->refcount) == 0);
|
if (WARN_ON(atomic_read(&vblank->refcount) == 0))
|
||||||
|
return;
|
||||||
|
|
||||||
if (WARN_ON(crtc >= dev->num_crtcs))
|
if (WARN_ON(crtc >= dev->num_crtcs))
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Add table
Reference in a new issue