Module Name: src
Committed By: riastradh
Date: Wed Sep 17 15:41:56 UTC 2014
Modified Files:
src/sys/external/bsd/drm2/dist/drm/radeon: atombios_dp.c
Log Message:
Use %hhx for uint8_t, not %hx.
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 \
src/sys/external/bsd/drm2/dist/drm/radeon/atombios_dp.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/external/bsd/drm2/dist/drm/radeon/atombios_dp.c
diff -u src/sys/external/bsd/drm2/dist/drm/radeon/atombios_dp.c:1.3 src/sys/external/bsd/drm2/dist/drm/radeon/atombios_dp.c:1.4
--- src/sys/external/bsd/drm2/dist/drm/radeon/atombios_dp.c:1.3 Thu Aug 28 20:40:57 2014
+++ src/sys/external/bsd/drm2/dist/drm/radeon/atombios_dp.c Wed Sep 17 15:41:56 2014
@@ -371,11 +371,11 @@ static void radeon_dp_probe_oui(struct r
return;
if (drm_dp_dpcd_read(&radeon_connector->ddc_bus->aux, DP_SINK_OUI, buf, 3) == 3)
- DRM_DEBUG_KMS("Sink OUI: %02hx%02hx%02hx\n",
+ DRM_DEBUG_KMS("Sink OUI: %02hhx%02hhx%02hhx\n",
buf[0], buf[1], buf[2]);
if (drm_dp_dpcd_read(&radeon_connector->ddc_bus->aux, DP_BRANCH_OUI, buf, 3) == 3)
- DRM_DEBUG_KMS("Branch OUI: %02hx%02hx%02hx\n",
+ DRM_DEBUG_KMS("Branch OUI: %02hhx%02hhx%02hhx\n",
buf[0], buf[1], buf[2]);
}