Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/rcar-du: Rename async to nonblock.

The async name is deprecated and should be changed to nonblocking.

Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/1461679905-30177-8-git-send-email-maarten.lankhorst@linux.intel.com

authored by

Maarten Lankhorst and committed by
Daniel Vetter
3302f358 6fc17fb2

+3 -2
+3 -2
drivers/gpu/drm/rcar-du/rcar_du_kms.c
··· 283 283 } 284 284 285 285 static int rcar_du_atomic_commit(struct drm_device *dev, 286 - struct drm_atomic_state *state, bool async) 286 + struct drm_atomic_state *state, 287 + bool nonblock) 287 288 { 288 289 struct rcar_du_device *rcdu = dev->dev_private; 289 290 struct rcar_du_commit *commit; ··· 329 328 /* Swap the state, this is the point of no return. */ 330 329 drm_atomic_helper_swap_state(dev, state); 331 330 332 - if (async) 331 + if (nonblock) 333 332 schedule_work(&commit->work); 334 333 else 335 334 rcar_du_atomic_complete(commit);