diff options
author | Masanari Iida <standby24x7@gmail.com> | 2013-10-24 03:02:57 -0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2013-12-02 08:59:11 -0500 |
commit | c6b78bc8c884097fa7beadbfae2b5a8a7a46d4fe (patch) | |
tree | 47a546bff66a5f871b308e12200d50ad4fa1a073 /drivers/gpu/drm/exynos | |
parent | 67f502dc0b50eaf60a6718814bb063cd0cafa9fd (diff) |
drm: fix typos in comment in /gpu/drm/exynos
Correct spelling typo in drivers/gpu/drm/exynos
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/gpu/drm/exynos')
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_crtc.c | 4 | ||||
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_g2d.c | 2 | ||||
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_gem.c | 2 | ||||
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_gem.h | 2 | ||||
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_ipp.c | 2 | ||||
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_ipp.h | 4 |
6 files changed, 8 insertions, 8 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_crtc.c b/drivers/gpu/drm/exynos/exynos_drm_crtc.c index ebc01503d50e..6f3400f3978a 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_crtc.c +++ b/drivers/gpu/drm/exynos/exynos_drm_crtc.c | |||
@@ -36,9 +36,9 @@ enum exynos_crtc_mode { | |||
36 | * @pipe: a crtc index created at load() with a new crtc object creation | 36 | * @pipe: a crtc index created at load() with a new crtc object creation |
37 | * and the crtc object would be set to private->crtc array | 37 | * and the crtc object would be set to private->crtc array |
38 | * to get a crtc object corresponding to this pipe from private->crtc | 38 | * to get a crtc object corresponding to this pipe from private->crtc |
39 | * array when irq interrupt occured. the reason of using this pipe is that | 39 | * array when irq interrupt occurred. the reason of using this pipe is that |
40 | * drm framework doesn't support multiple irq yet. | 40 | * drm framework doesn't support multiple irq yet. |
41 | * we can refer to the crtc to current hardware interrupt occured through | 41 | * we can refer to the crtc to current hardware interrupt occurred through |
42 | * this pipe value. | 42 | * this pipe value. |
43 | * @dpms: store the crtc dpms value | 43 | * @dpms: store the crtc dpms value |
44 | * @mode: store the crtc mode value | 44 | * @mode: store the crtc mode value |
diff --git a/drivers/gpu/drm/exynos/exynos_drm_g2d.c b/drivers/gpu/drm/exynos/exynos_drm_g2d.c index 3271fd4b1724..c97709cf73ed 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_g2d.c +++ b/drivers/gpu/drm/exynos/exynos_drm_g2d.c | |||
@@ -1124,7 +1124,7 @@ int exynos_g2d_set_cmdlist_ioctl(struct drm_device *drm_dev, void *data, | |||
1124 | * G2D interrupt event once current command list execution is | 1124 | * G2D interrupt event once current command list execution is |
1125 | * finished. | 1125 | * finished. |
1126 | * Otherwise only ACF bit should be set to INTEN register so | 1126 | * Otherwise only ACF bit should be set to INTEN register so |
1127 | * that one interrupt is occured after all command lists | 1127 | * that one interrupt is occurred after all command lists |
1128 | * have been completed. | 1128 | * have been completed. |
1129 | */ | 1129 | */ |
1130 | if (node->event) { | 1130 | if (node->event) { |
diff --git a/drivers/gpu/drm/exynos/exynos_drm_gem.c b/drivers/gpu/drm/exynos/exynos_drm_gem.c index 49f9cd232757..85808ad3c236 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_gem.c +++ b/drivers/gpu/drm/exynos/exynos_drm_gem.c | |||
@@ -657,7 +657,7 @@ int exynos_drm_gem_dumb_create(struct drm_file *file_priv, | |||
657 | int ret; | 657 | int ret; |
658 | 658 | ||
659 | /* | 659 | /* |
660 | * alocate memory to be used for framebuffer. | 660 | * allocate memory to be used for framebuffer. |
661 | * - this callback would be called by user application | 661 | * - this callback would be called by user application |
662 | * with DRM_IOCTL_MODE_CREATE_DUMB command. | 662 | * with DRM_IOCTL_MODE_CREATE_DUMB command. |
663 | */ | 663 | */ |
diff --git a/drivers/gpu/drm/exynos/exynos_drm_gem.h b/drivers/gpu/drm/exynos/exynos_drm_gem.h index 09555afdfe9c..eeaab92d4398 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_gem.h +++ b/drivers/gpu/drm/exynos/exynos_drm_gem.h | |||
@@ -60,7 +60,7 @@ struct exynos_drm_gem_buf { | |||
60 | * @vma: a pointer to vm_area. | 60 | * @vma: a pointer to vm_area. |
61 | * @flags: indicate memory type to allocated buffer and cache attruibute. | 61 | * @flags: indicate memory type to allocated buffer and cache attruibute. |
62 | * | 62 | * |
63 | * P.S. this object would be transfered to user as kms_bo.handle so | 63 | * P.S. this object would be transferred to user as kms_bo.handle so |
64 | * user can access the buffer through kms_bo.handle. | 64 | * user can access the buffer through kms_bo.handle. |
65 | */ | 65 | */ |
66 | struct exynos_drm_gem_obj { | 66 | struct exynos_drm_gem_obj { |
diff --git a/drivers/gpu/drm/exynos/exynos_drm_ipp.c b/drivers/gpu/drm/exynos/exynos_drm_ipp.c index 824e0705c8d3..d519a4e5fe40 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_ipp.c +++ b/drivers/gpu/drm/exynos/exynos_drm_ipp.c | |||
@@ -335,7 +335,7 @@ int exynos_drm_ipp_get_property(struct drm_device *drm_dev, void *data, | |||
335 | } else { | 335 | } else { |
336 | /* | 336 | /* |
337 | * Getting ippdrv capability by ipp_id. | 337 | * Getting ippdrv capability by ipp_id. |
338 | * some deivce not supported wb, output interface. | 338 | * some device not supported wb, output interface. |
339 | * so, user application detect correct ipp driver | 339 | * so, user application detect correct ipp driver |
340 | * using this ioctl. | 340 | * using this ioctl. |
341 | */ | 341 | */ |
diff --git a/drivers/gpu/drm/exynos/exynos_drm_ipp.h b/drivers/gpu/drm/exynos/exynos_drm_ipp.h index 4cadbea7dbde..ab1634befc05 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_ipp.h +++ b/drivers/gpu/drm/exynos/exynos_drm_ipp.h | |||
@@ -48,7 +48,7 @@ struct drm_exynos_ipp_cmd_work { | |||
48 | /* | 48 | /* |
49 | * A structure of command node. | 49 | * A structure of command node. |
50 | * | 50 | * |
51 | * @priv: IPP private infomation. | 51 | * @priv: IPP private information. |
52 | * @list: list head to command queue information. | 52 | * @list: list head to command queue information. |
53 | * @event_list: list head of event. | 53 | * @event_list: list head of event. |
54 | * @mem_list: list head to source,destination memory queue information. | 54 | * @mem_list: list head to source,destination memory queue information. |
@@ -92,7 +92,7 @@ struct drm_exynos_ipp_buf_info { | |||
92 | }; | 92 | }; |
93 | 93 | ||
94 | /* | 94 | /* |
95 | * A structure of wb setting infomation. | 95 | * A structure of wb setting information. |
96 | * | 96 | * |
97 | * @enable: enable flag for wb. | 97 | * @enable: enable flag for wb. |
98 | * @refresh: HZ of the refresh rate. | 98 | * @refresh: HZ of the refresh rate. |