drm/xe: Prefer kernel types
Kernel has a preference for its own types over C99. Switch to use them.
$ find drivers/gpu/drm/xe/ -type f -name '*.[ch]' |
xargs sed -i
-e 's/uint8_t/u8/g'
-e 's/uint16_t/u16/g'
-e 's/uint32_t/u32/g'
-e 's/uint64_t/u64/g'
-e 's/int64_t/s64/g'
-e 's/int32_t/s32/g'
-e 's/int16_t/s16/g'
-e 's/int8_t/s8/g'
Signed-off-by: Lucas De Marchi lucas.demarchi@intel.com