Skip to content

drm/xe: Prefer kernel types

Lucas De Marchi requested to merge demarchi/xe:tip-xe-typecleanup into xe

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

Merge request reports