Commit b52935d7 authored by Cyrill Gorcunov's avatar Cyrill Gorcunov Committed by Pavel Emelyanov

cpuinfo: arm -- Fix build

Add missing implementations for ARM platforms.

Reported-by: Mr. Travis
Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent cd1a6dc9
...@@ -33,3 +33,13 @@ int cpu_validate_image_cpuinfo_single(void) ...@@ -33,3 +33,13 @@ int cpu_validate_image_cpuinfo_single(void)
{ {
return -ENOTSUP; return -ENOTSUP;
} }
int cpuinfo_dump(void)
{
return -ENOTSUP;
}
int cpuinfo_check(void)
{
return -ENOTSUP;
}
...@@ -33,3 +33,13 @@ int cpu_validate_image_cpuinfo_single(void) ...@@ -33,3 +33,13 @@ int cpu_validate_image_cpuinfo_single(void)
{ {
return -ENOTSUP; return -ENOTSUP;
} }
int cpuinfo_dump(void)
{
return -ENOTSUP;
}
int cpuinfo_check(void)
{
return -ENOTSUP;
}
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