diff options
| author | Rodrigo Siqueira <[email protected]> | 2024-04-12 12:09:45 -0600 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2024-04-30 09:50:52 -0400 |
| commit | e76207bfa072f66e72cb483f4ceeba0f45dbe229 (patch) | |
| tree | 35a48b4f75cbe1ad3e2b6085d93477585acdfd13 | |
| parent | ff518e13eb5b7efd4740bcb4a25ea1fdfb76be90 (diff) | |
drm/amd/display: Replace uint8_t with u8 for dp_hdmi_dongle_signature_str
The string dp_hdmi_dongle_signature_str already uses u8 but the string
dp_hdmi_dongle_signature_str does not. Just replace uint8_t with u8 for
dp_hdmi_dongle_signature_str.
Reviewed-by: Wenjing Liu <[email protected]>
Acked-by: Aurabindo Pillai <[email protected]>
Signed-off-by: Rodrigo Siqueira <[email protected]>
Tested-by: Daniel Wheeler <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
| -rw-r--r-- | drivers/gpu/drm/amd/display/dc/link/link_detection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/link/link_detection.c b/drivers/gpu/drm/amd/display/dc/link/link_detection.c index 0d523dc43d02..bba644024780 100644 --- a/drivers/gpu/drm/amd/display/dc/link/link_detection.c +++ b/drivers/gpu/drm/amd/display/dc/link/link_detection.c @@ -65,7 +65,7 @@ static const u8 DP_SINK_BRANCH_DEV_NAME_7580[] = "7580\x80u"; -static const uint8_t dp_hdmi_dongle_signature_str[] = "DP-HDMI ADAPTOR"; +static const u8 dp_hdmi_dongle_signature_str[] = "DP-HDMI ADAPTOR"; static enum ddc_transaction_type get_ddc_transaction_type(enum signal_type sink_signal) { |