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>
This commit is contained in:
parent
67f502dc0b
commit
c6b78bc8c8
|
@ -36,9 +36,9 @@ enum exynos_crtc_mode {
|
||||||
* @pipe: a crtc index created at load() with a new crtc object creation
|
* @pipe: a crtc index created at load() with a new crtc object creation
|
||||||
* and the crtc object would be set to private->crtc array
|
* and the crtc object would be set to private->crtc array
|
||||||
* to get a crtc object corresponding to this pipe from private->crtc
|
* to get a crtc object corresponding to this pipe from private->crtc
|
||||||
* array when irq interrupt occured. the reason of using this pipe is that
|
* array when irq interrupt occurred. the reason of using this pipe is that
|
||||||
* drm framework doesn't support multiple irq yet.
|
* drm framework doesn't support multiple irq yet.
|
||||||
* we can refer to the crtc to current hardware interrupt occured through
|
* we can refer to the crtc to current hardware interrupt occurred through
|
||||||
* this pipe value.
|
* this pipe value.
|
||||||
* @dpms: store the crtc dpms value
|
* @dpms: store the crtc dpms value
|
||||||
* @mode: store the crtc mode value
|
* @mode: store the crtc mode value
|
||||||
|
|
|
@ -1124,7 +1124,7 @@ int exynos_g2d_set_cmdlist_ioctl(struct drm_device *drm_dev, void *data,
|
||||||
* G2D interrupt event once current command list execution is
|
* G2D interrupt event once current command list execution is
|
||||||
* finished.
|
* finished.
|
||||||
* Otherwise only ACF bit should be set to INTEN register so
|
* Otherwise only ACF bit should be set to INTEN register so
|
||||||
* that one interrupt is occured after all command lists
|
* that one interrupt is occurred after all command lists
|
||||||
* have been completed.
|
* have been completed.
|
||||||
*/
|
*/
|
||||||
if (node->event) {
|
if (node->event) {
|
||||||
|
|
|
@ -657,7 +657,7 @@ int exynos_drm_gem_dumb_create(struct drm_file *file_priv,
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* alocate memory to be used for framebuffer.
|
* allocate memory to be used for framebuffer.
|
||||||
* - this callback would be called by user application
|
* - this callback would be called by user application
|
||||||
* with DRM_IOCTL_MODE_CREATE_DUMB command.
|
* with DRM_IOCTL_MODE_CREATE_DUMB command.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -60,7 +60,7 @@ struct exynos_drm_gem_buf {
|
||||||
* @vma: a pointer to vm_area.
|
* @vma: a pointer to vm_area.
|
||||||
* @flags: indicate memory type to allocated buffer and cache attruibute.
|
* @flags: indicate memory type to allocated buffer and cache attruibute.
|
||||||
*
|
*
|
||||||
* P.S. this object would be transfered to user as kms_bo.handle so
|
* P.S. this object would be transferred to user as kms_bo.handle so
|
||||||
* user can access the buffer through kms_bo.handle.
|
* user can access the buffer through kms_bo.handle.
|
||||||
*/
|
*/
|
||||||
struct exynos_drm_gem_obj {
|
struct exynos_drm_gem_obj {
|
||||||
|
|
|
@ -335,7 +335,7 @@ int exynos_drm_ipp_get_property(struct drm_device *drm_dev, void *data,
|
||||||
} else {
|
} else {
|
||||||
/*
|
/*
|
||||||
* Getting ippdrv capability by ipp_id.
|
* Getting ippdrv capability by ipp_id.
|
||||||
* some deivce not supported wb, output interface.
|
* some device not supported wb, output interface.
|
||||||
* so, user application detect correct ipp driver
|
* so, user application detect correct ipp driver
|
||||||
* using this ioctl.
|
* using this ioctl.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -48,7 +48,7 @@ struct drm_exynos_ipp_cmd_work {
|
||||||
/*
|
/*
|
||||||
* A structure of command node.
|
* A structure of command node.
|
||||||
*
|
*
|
||||||
* @priv: IPP private infomation.
|
* @priv: IPP private information.
|
||||||
* @list: list head to command queue information.
|
* @list: list head to command queue information.
|
||||||
* @event_list: list head of event.
|
* @event_list: list head of event.
|
||||||
* @mem_list: list head to source,destination memory queue information.
|
* @mem_list: list head to source,destination memory queue information.
|
||||||
|
@ -92,7 +92,7 @@ struct drm_exynos_ipp_buf_info {
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* A structure of wb setting infomation.
|
* A structure of wb setting information.
|
||||||
*
|
*
|
||||||
* @enable: enable flag for wb.
|
* @enable: enable flag for wb.
|
||||||
* @refresh: HZ of the refresh rate.
|
* @refresh: HZ of the refresh rate.
|
||||||
|
|
Loading…
Reference in New Issue