Index: sys/external/bsd/drm2/dist/drm/radeon/atombios_dp.c =================================================================== RCS file: /cvsroot/src/sys/external/bsd/drm2/dist/drm/radeon/atombios_dp.c,v retrieving revision 1.3 diff -p -u -r1.3 atombios_dp.c --- sys/external/bsd/drm2/dist/drm/radeon/atombios_dp.c 28 Aug 2014 20:40:57 -0000 1.3 +++ sys/external/bsd/drm2/dist/drm/radeon/atombios_dp.c 17 Sep 2014 15:37:03 -0000 @@ -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]); }