]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
video: Add comments to struct sandbox_sdl_plat
authorSimon Glass <sjg@chromium.org>
Fri, 3 Jul 2020 03:12:28 +0000 (21:12 -0600)
committerBin Meng <bmeng.cn@gmail.com>
Thu, 9 Jul 2020 04:33:24 +0000 (12:33 +0800)
This struct is not commented but needs it. Also fix the comment in
check_vidconsole_output() about the encoding for the rotation value.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Anatolij Gustschin <agust@denx.de>
include/dm/test.h
test/dm/video.c

index f0f36624ce3b68906c3f3f692b0b8dda43d65bc0..d39686cde28aa4f68295fa7b98502f794c58fcfd 100644 (file)
@@ -159,7 +159,19 @@ enum {
 /* Declare a new driver model test */
 #define DM_TEST(_name, _flags) UNIT_TEST(_name, _flags, dm_test)
 
-/* This platform data is needed in tests, so declare it here */
+/*
+ * struct sandbox_sdl_plat - Platform data for the SDL video driver
+ *
+ * This platform data is needed in tests, so declare it here
+ *
+ * @xres: Width of display in pixels
+ * @yres: Height of display in pixels
+ * @bpix: Log2 of bits per pixel (enum video_log2_bpp)
+ * @rot: Console rotation (0=normal orientation, 1=90 degrees clockwise,
+ *     2=upside down, 3=90 degree counterclockwise)
+ * @vidconsole_drv_name: Name of video console driver (set by tests)
+ * @font_size: Console font size to select (set by tests)
+ */
 struct sandbox_sdl_plat {
        int xres;
        int yres;
index 68f5ba44e7d9781193bfbaab4204497fcd15d0e8..729c31b47db216b09a387b4573ca55b68ca02370 100644 (file)
@@ -188,7 +188,8 @@ DM_TEST(dm_test_video_ansi, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);
  * check_vidconsole_output() - Run a text console test
  *
  * @uts:       Test state
- * @rot:       Console rotation (0, 90, 180, 270)
+ * @rot:       Console rotation (0=normal orientation, 1=90 degrees clockwise,
+ *             2=upside down, 3=90 degree counterclockwise)
  * @wrap_size: Expected size of compressed frame buffer for the wrap test
  * @scroll_size: Same for the scroll test
  * @return 0 on success