aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/hdmi.c
diff options
context:
space:
mode:
authorLespiau, Damien <damien.lespiau@intel.com>2013-08-19 11:59:05 -0400
committerDave Airlie <airlied@gmail.com>2013-08-29 18:42:01 -0400
commit6cb3b7f1c013fd4bea41e16ee557bcb2f1561787 (patch)
tree7e4fd75076a3704c90614324f2e9c9054d789caf /drivers/video/hdmi.c
parentc8bb75afff8eaed89476a00f733c666e1b44115b (diff)
video/hdmi: Rename HDMI_IDENTIFIER to HDMI_IEEE_OUI
HDMI_IDENTIFIER was felt too generic, rename it to what it is, the IEEE OUI corresponding to HDMI Licensing, LLC. http://standards.ieee.org/develop/regauth/oui/oui.txt Cc: Thierry Reding <thierry.reding@gmail.com> Signed-off-by: Damien Lespiau <damien.lespiau@intel.com> Reviewed-by: Thierry Reding <treding@nvidia.com> Signed-off-by: Dave Airlie <airlied@gmail.com>
Diffstat (limited to 'drivers/video/hdmi.c')
-rw-r--r--drivers/video/hdmi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/hdmi.c b/drivers/video/hdmi.c
index 4f73167c8647..9e758a8f890d 100644
--- a/drivers/video/hdmi.c
+++ b/drivers/video/hdmi.c
@@ -300,7 +300,7 @@ int hdmi_vendor_infoframe_init(struct hdmi_vendor_infoframe *frame)
300 frame->type = HDMI_INFOFRAME_TYPE_VENDOR; 300 frame->type = HDMI_INFOFRAME_TYPE_VENDOR;
301 frame->version = 1; 301 frame->version = 1;
302 302
303 frame->oui = HDMI_IDENTIFIER; 303 frame->oui = HDMI_IEEE_OUI;
304 304
305 /* 305 /*
306 * 0 is a valid value for s3d_struct, so we use a special "not set" 306 * 0 is a valid value for s3d_struct, so we use a special "not set"
@@ -387,7 +387,7 @@ hdmi_vendor_any_infoframe_pack(union hdmi_vendor_any_infoframe *frame,
387 void *buffer, size_t size) 387 void *buffer, size_t size)
388{ 388{
389 /* we only know about HDMI vendor infoframes */ 389 /* we only know about HDMI vendor infoframes */
390 if (frame->any.oui != HDMI_IDENTIFIER) 390 if (frame->any.oui != HDMI_IEEE_OUI)
391 return -EINVAL; 391 return -EINVAL;
392 392
393 return hdmi_vendor_infoframe_pack(&frame->hdmi, buffer, size); 393 return hdmi_vendor_infoframe_pack(&frame->hdmi, buffer, size);