From: Peter Krempa Date: Wed, 9 Oct 2013 12:36:32 +0000 (+0200) Subject: cpu: x86: Fix function header formatting and whitespace X-Git-Tag: CVE-2013-4401~39 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=25cbc13cd18d7ff1ab177450af9d0bd60d394e79;p=thirdparty%2Flibvirt.git cpu: x86: Fix function header formatting and whitespace --- diff --git a/src/cpu/cpu_x86.c b/src/cpu/cpu_x86.c index 3ef079e8bd..e6ff591870 100644 --- a/src/cpu/cpu_x86.c +++ b/src/cpu/cpu_x86.c @@ -1240,6 +1240,7 @@ cleanup: ret = VIR_CPU_COMPARE_INCOMPATIBLE; \ } while (0) + static virCPUCompareResult x86Compute(virCPUDefPtr host, virCPUDefPtr cpu, @@ -1410,6 +1411,7 @@ x86GuestData(virCPUDefPtr host, return x86Compute(host, guest, data, message); } + static int x86AddFeatures(virCPUDefPtr cpu, struct x86_map *map) @@ -2010,8 +2012,10 @@ x86Update(virCPUDefPtr guest, return -1; } -static int x86HasFeature(const virCPUData *data, - const char *name) + +static int +x86HasFeature(const virCPUData *data, + const char *name) { struct x86_map *map; struct x86_feature *feature; @@ -2030,6 +2034,7 @@ cleanup: return ret; } + struct cpuArchDriver cpuDriverX86 = { .name = "x86", .arch = archs,