Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/amd/display: Clean some unneeded defines from ddc_service_types.h

Remove defines we no longer need

Signed-off-by: Harry Wentland <harry.wentland@amd.com>
Reviewed-by: Andrey Grodzovsky <Andrey.Grodzovsky@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

authored by

Harry Wentland and committed by
Alex Deucher
e643b1d5 8474a22b

-33
-33
drivers/gpu/drm/amd/display/include/ddc_service_types.h
··· 27 27 28 28 #define DP_BRANCH_DEVICE_ID_1 0x0010FA 29 29 #define DP_BRANCH_DEVICE_ID_2 0x0022B9 30 - #define DP_SINK_DEVICE_ID_1 0x4CE000 31 30 #define DP_BRANCH_DEVICE_ID_3 0x00001A 32 31 #define DP_BRANCH_DEVICE_ID_4 0x0080e1 33 - #define DP_BRANCH_DEVICE_ID_5 0x006037 34 - #define DP_SINK_DEVICE_ID_2 0x001CF8 35 - 36 32 37 33 enum ddc_result { 38 34 DDC_RESULT_UNKNOWN = 0, ··· 111 115 uint8_t aud_del_ins3;/* DPCD 0002Dh */ 112 116 }; 113 117 114 - /*DP to VGA converter*/ 115 - static const uint8_t DP_VGA_CONVERTER_ID_1[] = "mVGAa"; 116 - /*DP to Dual link DVI converter*/ 117 - static const uint8_t DP_DVI_CONVERTER_ID_1[] = "m2DVIa"; 118 118 /*Travis*/ 119 119 static const uint8_t DP_VGA_LVDS_CONVERTER_ID_2[] = "sivarT"; 120 120 /*Nutmeg*/ 121 121 static const uint8_t DP_VGA_LVDS_CONVERTER_ID_3[] = "dnomlA"; 122 - /*DP to VGA converter*/ 123 - static const uint8_t DP_VGA_CONVERTER_ID_4[] = "DpVga"; 124 122 /*DP to Dual link DVI converter*/ 125 123 static const uint8_t DP_DVI_CONVERTER_ID_4[] = "m2DVIa"; 126 - /*DP to Dual link DVI converter 2*/ 127 - static const uint8_t DP_DVI_CONVERTER_ID_42[] = "v2DVIa"; 128 - 129 - static const uint8_t DP_SINK_DEV_STRING_ID2_REV0[] = "\0\0\0\0\0\0"; 130 - 131 - /* Identifies second generation PSR TCON from Parade: Device ID string: 132 - * yy-xx-**-**-**-** 133 - */ 134 - /* xx - Hw ID high byte */ 135 - static const uint32_t DP_SINK_DEV_STRING_ID2_REV1_HW_ID_HIGH_BYTE = 136 - 0x06; 137 - 138 - /* yy - HW ID low byte, the same silicon has several package/feature flavors */ 139 - static const uint32_t DP_SINK_DEV_STRING_ID2_REV1_HW_ID_LOW_BYTE1 = 140 - 0x61; 141 - static const uint32_t DP_SINK_DEV_STRING_ID2_REV1_HW_ID_LOW_BYTE2 = 142 - 0x62; 143 - static const uint32_t DP_SINK_DEV_STRING_ID2_REV1_HW_ID_LOW_BYTE3 = 144 - 0x63; 145 - static const uint32_t DP_SINK_DEV_STRING_ID2_REV1_HW_ID_LOW_BYTE4 = 146 - 0x72; 147 - static const uint32_t DP_SINK_DEV_STRING_ID2_REV1_HW_ID_LOW_BYTE5 = 148 - 0x73; 149 124 150 125 #endif /* __DAL_DDC_SERVICE_TYPES_H__ */