Commit 1aa30a00 authored by André Almeida's avatar André Almeida Committed by Greg Kroah-Hartman

staging: vchi: change type 'int32_t' to 's32'

As one can see in a typedef at linux/types.h:103, s32 and int32_t are
both a 32 bits signed integer. s32 is preferred because it is defined
by the kernel maintainers and it prevents portability issues. Changed
to meet checkpatch criteria.
Signed-off-by: default avatarAndré Almeida <andrealmeid@riseup.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2853a061
......@@ -36,7 +36,7 @@
#include <linux/types.h>
typedef int32_t VCHI_MEM_HANDLE_T;
typedef s32 VCHI_MEM_HANDLE_T;
#define VCHI_MEM_HANDLE_INVALID 0
#endif
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