Commit 66f3e5cc authored by Siarhei Siamashka's avatar Siarhei Siamashka
Browse files

CPU: Remove unneeded test program bundled with runtime CPU detection



The 'main' function got there by accident and was not spotted
earlier because the driver itself is a shared library.
Signed-off-by: default avatarSiarhei Siamashka <siarhei.siamashka@gmail.com>
parent e6b1e48b
...@@ -187,10 +187,3 @@ void cpuinfo_close(cpuinfo_t *cpuinfo) ...@@ -187,10 +187,3 @@ void cpuinfo_close(cpuinfo_t *cpuinfo)
free(cpuinfo->processor_name); free(cpuinfo->processor_name);
free(cpuinfo); free(cpuinfo);
} }
int main()
{
cpuinfo_t *cpuinfo = cpuinfo_init();
printf("%s %d\n", cpuinfo->processor_name, cpuinfo->has_arm_neon);
return 0;
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment