From c33033dbe00c0f89b93f9859628b2792b0cc1144 Mon Sep 17 00:00:00 2001 From: Elena Ufimtseva Date: Wed, 15 May 2013 17:45:56 -0400 Subject: [PATCH] Staging: ced1401: Patch fixes missing parentheses in macro definitions. Patch fixes missing parentheses in macro definitions. Signed-off-by: Elena Ufimtseva Signed-off-by: Greg Kroah-Hartman --- drivers/staging/ced1401/use1401.h | 6 +++--- drivers/staging/ced1401/use14_ioc.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/staging/ced1401/use1401.h b/drivers/staging/ced1401/use1401.h index 0ebadd504bd0..80213ef7ab8b 100644 --- a/drivers/staging/ced1401/use1401.h +++ b/drivers/staging/ced1401/use1401.h @@ -18,9 +18,9 @@ #ifdef _IS_WINDOWS_ #ifndef U14_NOT_DLL #ifdef DLL_USE1401 -#define U14API(retType) retType DllExport __stdcall +#define U14API(retType) (retType DllExport __stdcall) #else -#define U14API(retType) retType DllImport __stdcall +#define U14API(retType) (retType DllImport __stdcall) #endif #endif @@ -36,7 +36,7 @@ #ifdef _QT #ifndef U14_NOT_DLL #undef U14API -#define U14API(retType) retType __declspec(dllimport) __stdcall +#define U14API(retType) (retType __declspec(dllimport) __stdcall) #endif #undef U14LONG #define U14LONG int diff --git a/drivers/staging/ced1401/use14_ioc.h b/drivers/staging/ced1401/use14_ioc.h index be99c4ab23b1..a2f6e6e8e38a 100644 --- a/drivers/staging/ced1401/use14_ioc.h +++ b/drivers/staging/ced1401/use14_ioc.h @@ -34,7 +34,7 @@ #define U14_SENDSTRING CTL_CODE(FILE_DEVICE_CED1401, \ FNNUMBASE+2, \ METHOD_BUFFERED, \ - FILE_ANY_ACCESS + FILE_ANY_ACCESS) #define U14_RESET1401 CTL_CODE(FILE_DEVICE_CED1401, \ FNNUMBASE+3, \ -- 2.34.1