diff options
Diffstat (limited to 'src/soc/samsung/exynos5420/dp.c')
-rw-r--r-- | src/soc/samsung/exynos5420/dp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/samsung/exynos5420/dp.c b/src/soc/samsung/exynos5420/dp.c index b147035b64..4c54b4fef1 100644 --- a/src/soc/samsung/exynos5420/dp.c +++ b/src/soc/samsung/exynos5420/dp.c @@ -218,7 +218,7 @@ static unsigned int exynos_dp_handle_edid(struct edp_device_info *edp_info) printk(BIOS_ERR, "DP Wrong MAX LINK RATE : %x\n", temp); return -1; } - /*Refer VESA Display Port Stnadard Ver1.1a Page 120 */ + /*Refer VESA Display Port Standard Ver1.1a Page 120 */ if (edp_info->dpcd_rev == DP_DPCD_REV_11) { temp = buf[DPCD_MAX_LANE_COUNT] & 0x1f; if (buf[DPCD_MAX_LANE_COUNT] & 0x80) @@ -420,7 +420,7 @@ static unsigned int exynos_dp_read_dpcd_adj_req(unsigned char lane_num, unsigned char buf; unsigned int dpcd_addr; - /*lane_num value is used as arry index, so this range 0 ~ 3 */ + /*lane_num value is used as array index, so this range 0 ~ 3 */ dpcd_addr = DPCD_ADJUST_REQUEST_LANE0_1 + (lane_num / 2); ret = exynos_dp_read_byte_from_dpcd(dpcd_addr, &buf); |