From: Hongbo Zhang <hongbo.zh...@linaro.org>

The odp_sys_cpu_model_str() is moved to cpu.h and then renamed to
odp_cpu_model_str(), so all the calling functions should be updated
too, this patch updates the test part codes.

Signed-off-by: Hongbo Zhang <hongbo.zh...@linaro.org>
---
 test/api_test/odp_common.c        | 2 +-
 test/performance/odp_atomic.c     | 2 +-
 test/performance/odp_l2fwd.c      | 2 +-
 test/performance/odp_scheduling.c | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/test/api_test/odp_common.c b/test/api_test/odp_common.c
index 0dbefa5..f927ea6 100644
--- a/test/api_test/odp_common.c
+++ b/test/api_test/odp_common.c
@@ -41,7 +41,7 @@ void odp_print_system_info(void)
        printf("ODP system info\n");
        printf("---------------\n");
        printf("ODP API version: %s\n",        odp_version_api_str());
-       printf("CPU model:       %s\n",        odp_sys_cpu_model_str());
+       printf("CPU model:       %s\n",        odp_cpu_model_str());
        printf("CPU freq (hz):   %"PRIu64"\n", odp_sys_cpu_hz());
        printf("Cache line size: %i\n",        odp_sys_cache_line_size());
        printf("CPU count:       %i\n",        odp_cpu_count());
diff --git a/test/performance/odp_atomic.c b/test/performance/odp_atomic.c
index eefce06..29efd1b 100644
--- a/test/performance/odp_atomic.c
+++ b/test/performance/odp_atomic.c
@@ -337,7 +337,7 @@ void odp_print_system_info(void)
        printf("ODP system info\n");
        printf("---------------\n");
        printf("ODP API version: %s\n",        odp_version_api_str());
-       printf("CPU model:       %s\n",        odp_sys_cpu_model_str());
+       printf("CPU model:       %s\n",        odp_cpu_model_str());
        printf("CPU freq (hz):   %"PRIu64"\n", odp_sys_cpu_hz());
        printf("Cache line size: %i\n",        odp_sys_cache_line_size());
        printf("CPU count:       %i\n",        odp_cpu_count());
diff --git a/test/performance/odp_l2fwd.c b/test/performance/odp_l2fwd.c
index 64fc1b2..7621948 100644
--- a/test/performance/odp_l2fwd.c
+++ b/test/performance/odp_l2fwd.c
@@ -669,7 +669,7 @@ static void print_info(char *progname, appl_args_t 
*appl_args)
               "Cache line size: %i\n"
               "CPU count:       %i\n"
               "\n",
-              odp_version_api_str(), odp_sys_cpu_model_str(), odp_sys_cpu_hz(),
+              odp_version_api_str(), odp_cpu_model_str(), odp_sys_cpu_hz(),
               odp_sys_cache_line_size(), odp_cpu_count());
 
        printf("Running ODP appl: \"%s\"\n"
diff --git a/test/performance/odp_scheduling.c 
b/test/performance/odp_scheduling.c
index 2a7e531..c93dd44 100644
--- a/test/performance/odp_scheduling.c
+++ b/test/performance/odp_scheduling.c
@@ -878,7 +878,7 @@ int main(int argc, char *argv[])
        printf("ODP system info\n");
        printf("---------------\n");
        printf("ODP API version: %s\n",        odp_version_api_str());
-       printf("CPU model:       %s\n",        odp_sys_cpu_model_str());
+       printf("CPU model:       %s\n",        odp_cpu_model_str());
        printf("CPU freq (hz):   %"PRIu64"\n", odp_sys_cpu_hz());
        printf("Cache line size: %i\n",        odp_sys_cache_line_size());
        printf("Max CPU count:   %i\n",        odp_cpu_count());
-- 
1.9.1

_______________________________________________
lng-odp mailing list
lng-odp@lists.linaro.org
https://lists.linaro.org/mailman/listinfo/lng-odp

Reply via email to