mirror of
https://github.com/intel/isa-l.git
synced 2025-10-28 11:31:51 +01:00
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:
committed by
Greg Tucker
parent
6e9f576bff
commit
d9ec2c4c8a
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user