drm/exynos: Rename async to nonblock.

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

Cc: Inki Dae <inki.dae@samsung.com>
Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/1461679905-30177-5-git-send-email-maarten.lankhorst@linux.intel.com
This commit is contained in:
Maarten Lankhorst 2016-04-26 16:11:37 +02:00 committed by Daniel Vetter
parent 51b6beff6e
commit 1b3f09d8ca
2 changed files with 3 additions and 3 deletions

View File

@ -270,7 +270,7 @@ static int commit_is_pending(struct exynos_drm_private *priv, u32 crtcs)
} }
int exynos_atomic_commit(struct drm_device *dev, struct drm_atomic_state *state, int exynos_atomic_commit(struct drm_device *dev, struct drm_atomic_state *state,
bool async) bool nonblock)
{ {
struct exynos_drm_private *priv = dev->dev_private; struct exynos_drm_private *priv = dev->dev_private;
struct exynos_atomic_commit *commit; struct exynos_atomic_commit *commit;
@ -308,7 +308,7 @@ int exynos_atomic_commit(struct drm_device *dev, struct drm_atomic_state *state,
drm_atomic_helper_swap_state(dev, state); drm_atomic_helper_swap_state(dev, state);
if (async) if (nonblock)
schedule_work(&commit->work); schedule_work(&commit->work);
else else
exynos_atomic_commit_complete(commit); exynos_atomic_commit_complete(commit);

View File

@ -296,7 +296,7 @@ static inline int exynos_dpi_bind(struct drm_device *dev,
#endif #endif
int exynos_atomic_commit(struct drm_device *dev, struct drm_atomic_state *state, int exynos_atomic_commit(struct drm_device *dev, struct drm_atomic_state *state,
bool async); bool nonblock);
extern struct platform_driver fimd_driver; extern struct platform_driver fimd_driver;