diff options
author | Ingo Molnar <mingo@kernel.org> | 2016-02-29 09:04:01 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2016-02-29 09:04:01 +0100 |
commit | 0a7348925f58839fbb4c86b7e34f43b91beb0586 (patch) | |
tree | 8db1b38503cc444f78b13ed1a3d6816708cf181c /drivers/gpu/drm/vc4/vc4_irq.c | |
parent | ce1984cc45ccf943f1b78b1674dfdbe5df2d45a9 (diff) | |
parent | fc77dbd34c5c99bce46d40a2491937c3bcbd10af (diff) | |
download | linux-0a7348925f58839fbb4c86b7e34f43b91beb0586.tar.gz linux-0a7348925f58839fbb4c86b7e34f43b91beb0586.tar.bz2 linux-0a7348925f58839fbb4c86b7e34f43b91beb0586.zip |
Merge tag 'v4.5-rc6' into perf/core, to pick up fixes
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'drivers/gpu/drm/vc4/vc4_irq.c')
-rw-r--r-- | drivers/gpu/drm/vc4/vc4_irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/vc4/vc4_irq.c b/drivers/gpu/drm/vc4/vc4_irq.c index b68060e758db..78a21357fb2d 100644 --- a/drivers/gpu/drm/vc4/vc4_irq.c +++ b/drivers/gpu/drm/vc4/vc4_irq.c @@ -57,7 +57,7 @@ vc4_overflow_mem_work(struct work_struct *work) struct vc4_bo *bo; bo = vc4_bo_create(dev, 256 * 1024, true); - if (!bo) { + if (IS_ERR(bo)) { DRM_ERROR("Couldn't allocate binner overflow mem\n"); return; } |