summaryrefslogtreecommitdiff
path: root/tests/amdgpu/amdgpu_test.h
diff options
context:
space:
mode:
authorMichel Dänzer <michel.daenzer@amd.com>2018-03-01 11:15:42 +0100
committerMichel Dänzer <michel@daenzer.net>2018-03-02 12:19:11 +0100
commita1a13d2002666922dbc7530c6f16aad600c3c3f3 (patch)
tree014add9329b457c031a4e8dbfa0aca85448c2b4e /tests/amdgpu/amdgpu_test.h
parent1f6a85cc3773025940005e443f9bddcbf1795c27 (diff)
tests/amdgpu: Fix misspellings of "suite"
Acked-by: Christian König <christian.koenig@amd.com>
Diffstat (limited to 'tests/amdgpu/amdgpu_test.h')
-rw-r--r--tests/amdgpu/amdgpu_test.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/amdgpu/amdgpu_test.h b/tests/amdgpu/amdgpu_test.h
index 7397dea0..62875736 100644
--- a/tests/amdgpu/amdgpu_test.h
+++ b/tests/amdgpu/amdgpu_test.h
@@ -350,26 +350,26 @@ amdgpu_get_bo_list(amdgpu_device_handle dev, amdgpu_bo_handle bo1,
}
-static inline CU_ErrorCode amdgpu_set_suite_active(const char *suit_name,
+static inline CU_ErrorCode amdgpu_set_suite_active(const char *suite_name,
CU_BOOL active)
{
- CU_ErrorCode r = CU_set_suite_active(CU_get_suite(suit_name), active);
+ CU_ErrorCode r = CU_set_suite_active(CU_get_suite(suite_name), active);
if (r != CUE_SUCCESS)
- fprintf(stderr, "Failed to obtain suite %s\n", suit_name);
+ fprintf(stderr, "Failed to obtain suite %s\n", suite_name);
return r;
}
-static inline CU_ErrorCode amdgpu_set_test_active(const char *suit_name,
+static inline CU_ErrorCode amdgpu_set_test_active(const char *suite_name,
const char *test_name, CU_BOOL active)
{
CU_ErrorCode r;
- CU_pSuite pSuite = CU_get_suite(suit_name);
+ CU_pSuite pSuite = CU_get_suite(suite_name);
if (!pSuite) {
fprintf(stderr, "Failed to obtain suite %s\n",
- suit_name);
+ suite_name);
return CUE_NOSUITE;
}