ec: use standard types in struct slver

This matches the definition of struct slver elsewhere in the code.

Removes the last use of [U]INT{8,16,32,64} types.

Change-Id: I70761ac27add1e19808f1cebd6a7ee69ebd08dee
Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
This commit is contained in:
Daniel Verkamp
2018-03-12 13:31:59 -07:00
committed by Greg Tucker
parent 6e9f576bff
commit d9ec2c4c8a
2 changed files with 6 additions and 6 deletions

View File

@@ -341,9 +341,9 @@ void gf_vect_mul_base(int len, unsigned char *a, unsigned char *src, unsigned ch
}
struct slver {
UINT16 snum;
UINT8 ver;
UINT8 core;
unsigned short snum;
unsigned char ver;
unsigned char core;
};
// Version info

View File

@@ -324,9 +324,9 @@ void ec_encode_data_update_avx2(int len, int k, int rows, int vec_i, unsigned ch
#endif //__x86_64__ || __i386__ || _M_X64 || _M_IX86
struct slver {
UINT16 snum;
UINT8 ver;
UINT8 core;
unsigned short snum;
unsigned char ver;
unsigned char core;
};
// Version info