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: André Almeida <andrealmeid@riseup.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
2853a061be
commit
1aa30a00b5
|
@ -36,7 +36,7 @@
|
||||||
|
|
||||||
#include <linux/types.h>
|
#include <linux/types.h>
|
||||||
|
|
||||||
typedef int32_t VCHI_MEM_HANDLE_T;
|
typedef s32 VCHI_MEM_HANDLE_T;
|
||||||
#define VCHI_MEM_HANDLE_INVALID 0
|
#define VCHI_MEM_HANDLE_INVALID 0
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue