tests/exynos: fix typos and change wording

No functional changes.

Signed-off-by: Tobias Jakobi <tjakobi@math.uni-bielefeld.de>
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
Tested-by: Joonyoung Shim <jy0922.shim@samsung.com>
main
Tobias Jakobi 2015-02-24 15:20:41 +01:00 committed by Emil Velikov
parent 1d7e78d787
commit c8168fe5b8
2 changed files with 6 additions and 6 deletions

View File

@ -148,13 +148,13 @@ static void g2d_reset(struct g2d_context *ctx)
} }
/* /*
* g2d_flush - summit all commands and values in user side command buffer * g2d_flush - submit all commands and values in user side command buffer
* to command queue aware of fimg2d dma. * to command queue aware of fimg2d dma.
* *
* @ctx: a pointer to g2d_context structure. * @ctx: a pointer to g2d_context structure.
* *
* This function should be called after all commands and values to user * This function should be called after all commands and values to user
* side command buffer is set to summit that buffer to kernel side driver. * side command buffer are set. It submits that buffer to the kernel side driver.
*/ */
static int g2d_flush(struct g2d_context *ctx) static int g2d_flush(struct g2d_context *ctx)
{ {
@ -195,7 +195,7 @@ static int g2d_flush(struct g2d_context *ctx)
/** /**
* g2d_init - create a new g2d context and get hardware version. * g2d_init - create a new g2d context and get hardware version.
* *
* fd: a file descriptor to drm device driver opened. * fd: a file descriptor to an opened drm device.
*/ */
drm_public struct g2d_context *g2d_init(int fd) drm_public struct g2d_context *g2d_init(int fd)
{ {
@ -527,7 +527,7 @@ g2d_copy_with_scale(struct g2d_context *ctx, struct g2d_image *src,
} }
/** /**
* g2d_blend - blend image data in source and destion buffers * g2d_blend - blend image data in source and destination buffers.
* *
* @ctx: a pointer to g2d_context structure. * @ctx: a pointer to g2d_context structure.
* @src: a pointer to g2d_image structure including image and buffer * @src: a pointer to g2d_image structure including image and buffer

View File

@ -41,7 +41,7 @@ static unsigned int screen_width, screen_height;
/* /*
* A structure to test fimg2d hw. * A structure to test fimg2d hw.
* *
* @solid_fild: fill given color data to source buffer. * @solid_fill: fill given color data to source buffer.
* @copy: copy source to destination buffer. * @copy: copy source to destination buffer.
* @copy_with_scale: copy source to destination buffer scaling up or * @copy_with_scale: copy source to destination buffer scaling up or
* down properly. * down properly.
@ -228,7 +228,7 @@ static int g2d_solid_fill_test(struct exynos_device *dev, struct exynos_bo *dst)
memset(&img, 0, sizeof(struct g2d_image)); memset(&img, 0, sizeof(struct g2d_image));
img.bo[0] = dst->handle; img.bo[0] = dst->handle;
printf("soild fill test.\n"); printf("solid fill test.\n");
srand(time(NULL)); srand(time(NULL));
img_w = screen_width; img_w = screen_width;