mirror of
https://github.com/torvalds/linux.git
synced 2025-11-06 11:39:24 +02:00
The type definition for 'uint' clashes with the generic kernel
headers:
drivers/gpu/drm/amd/amdgpu/../display/dc/dml/dcn21/display_mode_vba_21.c:43:22: error: redefinition of typedef 'uint' is a C11 feature [-Werror,-Wtypedef-redefinition]
include/linux/types.h:92:23: note: previous definition is here
Just remove this type and use plain 'unsigned int' consistently,
as it is already use almost everywhere in this file.
Fixes:
|
||
|---|---|---|
| .. | ||
| dcn20 | ||
| dcn21 | ||
| dc_features.h | ||
| display_mode_enums.h | ||
| display_mode_lib.c | ||
| display_mode_lib.h | ||
| display_mode_structs.h | ||
| display_mode_vba.c | ||
| display_mode_vba.h | ||
| display_rq_dlg_helpers.c | ||
| display_rq_dlg_helpers.h | ||
| dml1_display_rq_dlg_calc.c | ||
| dml1_display_rq_dlg_calc.h | ||
| dml_common_defs.c | ||
| dml_common_defs.h | ||
| dml_inline_defs.h | ||
| dml_logger.h | ||
| Makefile | ||