diff options
author | Seung-Woo Kim <sw0312.kim@samsung.com> | 2019-03-27 08:07:09 +0300 |
---|---|---|
committer | Inki Dae <inki.dae@samsung.com> | 2019-04-24 05:23:20 +0300 |
commit | f9af3f846c31b4295bc276c57433215414e84392 (patch) | |
tree | 7b00d211f1d1d8eface13899f49e20f45f9c04c4 /drivers/gpu/drm/exynos | |
parent | 70b5f09e4389c789263c6d79c539b8378e3af3bc (diff) | |
download | linux-f9af3f846c31b4295bc276c57433215414e84392.tar.xz |
drm/exynos: g2d: remove style error
Remove checkpatch error, "foo* bar" should be "foo *bar".
Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
Diffstat (limited to 'drivers/gpu/drm/exynos')
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_g2d.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_g2d.c b/drivers/gpu/drm/exynos/exynos_drm_g2d.c index 24c536d6d9cf..a9c26b32e814 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_g2d.c +++ b/drivers/gpu/drm/exynos/exynos_drm_g2d.c @@ -845,7 +845,7 @@ static void g2d_free_runqueue_node(struct g2d_data *g2d, * * Has to be called under runqueue lock. */ -static void g2d_remove_runqueue_nodes(struct g2d_data *g2d, struct drm_file* file) +static void g2d_remove_runqueue_nodes(struct g2d_data *g2d, struct drm_file *file) { struct g2d_runqueue_node *node, *n; |