[igt-dev] [PATCH i-g-t v2 3/7] tests/kms_tiled_display: Cleanup the chamelium ifdefs
Ville Syrjala
ville.syrjala at linux.intel.com
Thu Jun 1 13:08:46 UTC 2023
From: Ville Syrjälä <ville.syrjala at linux.intel.com>
Clean up the mess around the chmelium ifdes a bit.
Signed-off-by: Ville Syrjälä <ville.syrjala at linux.intel.com>
---
tests/kms_tiled_display.c | 18 +++++++-----------
1 file changed, 7 insertions(+), 11 deletions(-)
diff --git a/tests/kms_tiled_display.c b/tests/kms_tiled_display.c
index ad98462012db..75cda62db28e 100644
--- a/tests/kms_tiled_display.c
+++ b/tests/kms_tiled_display.c
@@ -61,19 +61,14 @@ typedef struct {
enum igt_commit_style commit;
struct timeval first_ts;
- #ifdef HAVE_CHAMELIUM
+#ifdef HAVE_CHAMELIUM
struct chamelium *chamelium;
struct chamelium_port **ports;
int port_count;
struct chamelium_edid *edids[IGT_CUSTOM_EDID_COUNT];
- #endif
-
+#endif
} data_t;
-#ifdef HAVE_CHAMELIUM
-static void test_with_chamelium(data_t *data, igt_display_t *display);
-#endif
-
static int drm_property_is_tile(drmModePropertyPtr prop)
{
return (strcmp(prop->name, "TILE") ? 0 : 1) &&
@@ -473,9 +468,9 @@ igt_main
test_cleanup(&data);
}
- #ifdef HAVE_CHAMELIUM
- igt_describe("Make sure the Tiled CRTCs are synchronized and we get "
- "page flips for all tiled CRTCs in one vblank (executes on chamelium).");
+#ifdef HAVE_CHAMELIUM
+ igt_describe("Make sure the Tiled CRTCs are synchronized and we get "
+ "page flips for all tiled CRTCs in one vblank (executes on chamelium).");
igt_subtest_f("basic-test-pattern-with-chamelium") {
int i;
@@ -487,7 +482,8 @@ igt_main
data.ports[i], data.ports,
data.port_count);
}
- #endif
+#endif
+
igt_fixture {
free(data.conns);
kmstest_restore_vt_mode();
--
2.39.3
More information about the igt-dev
mailing list