From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: Benjamin Romer Subject: [PATCH 08/14] staging: unisys: fix spacing in iovmcall_gnuc.h Date: Tue, 5 Aug 2014 14:57:52 -0400 Message-ID: <1407265078-21691-9-git-send-email-benjamin.romer@unisys.com> In-Reply-To: <1407265078-21691-1-git-send-email-benjamin.romer@unisys.com> References: <1407265078-21691-1-git-send-email-benjamin.romer@unisys.com> MIME-Version: 1.0 Content-Type: text/plain List-ID: To: gregkh@linuxfoundation.org Cc: jkc@redhat.com, driverdev-devel@linuxdriverproject.org, sparmaintainer@unisys.com, Benjamin Romer There are spacing errors in the functions in iovmcall_gnuc. Fix these. Signed-off-by: Benjamin Romer --- drivers/staging/unisys/common-spar/include/iovmcall_gnuc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/unisys/common-spar/include/iovmcall_gnuc.h b/drivers/staging/unisys/common-spar/include/iovmcall_gnuc.h index fe9598c..55437f7 100644 --- a/drivers/staging/unisys/common-spar/include/iovmcall_gnuc.h +++ b/drivers/staging/unisys/common-spar/include/iovmcall_gnuc.h @@ -19,8 +19,8 @@ __unisys_vmcall_gnuc(unsigned long tuple, unsigned long reg_ebx, unsigned long reg_ecx) { unsigned long result = 0; - unsigned int cpuid_eax, cpuid_ebx, cpuid_ecx, cpuid_edx; + cpuid(0x00000001, &cpuid_eax, &cpuid_ebx, &cpuid_ecx, &cpuid_edx); if (cpuid_ecx & 0x80000000) { __asm__ __volatile__(".byte 0x00f, 0x001, 0x0c1" : "=a"(result) : @@ -39,8 +39,8 @@ __unisys_extended_vmcall_gnuc(unsigned long long tuple, unsigned long long reg_edx) { unsigned long result = 0; - unsigned int cpuid_eax, cpuid_ebx, cpuid_ecx, cpuid_edx; + cpuid(0x00000001, &cpuid_eax, &cpuid_ebx, &cpuid_ecx, &cpuid_edx); if (cpuid_ecx & 0x80000000) { __asm__ __volatile__(".byte 0x00f, 0x001, 0x0c1" : "=a"(result) : -- 1.9.1