diff options
author | Mythri P K <mythripk@ti.com> | 2011-09-22 04:07:42 -0400 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2011-09-30 09:17:30 -0400 |
commit | 050958b97b43e1121a9d0ba3cc3cf788594d57b5 (patch) | |
tree | ac28695f9ff5696695663e58bf25fec648f0bbf7 /drivers/video | |
parent | 562a060611de60d6cceecb8a71847216679eef2a (diff) |
OMAPDSS: HDMI: Move the comments in avi infoframe
Move the comments in AVI infoframe structure above each parameter
to align with other comments in the header file.
Signed-off-by: Mythri P K <mythripk@ti.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/omap2/dss/ti_hdmi_4xxx_ip.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/drivers/video/omap2/dss/ti_hdmi_4xxx_ip.h b/drivers/video/omap2/dss/ti_hdmi_4xxx_ip.h index 929de885f3f9..de1e19956012 100644 --- a/drivers/video/omap2/dss/ti_hdmi_4xxx_ip.h +++ b/drivers/video/omap2/dss/ti_hdmi_4xxx_ip.h | |||
@@ -455,40 +455,40 @@ struct hdmi_core_video_config { | |||
455 | * details about infoframe databytes | 455 | * details about infoframe databytes |
456 | */ | 456 | */ |
457 | struct hdmi_core_infoframe_avi { | 457 | struct hdmi_core_infoframe_avi { |
458 | /* Y0, Y1 rgb,yCbCr */ | ||
458 | u8 db1_format; | 459 | u8 db1_format; |
459 | /* Y0, Y1 rgb,yCbCr */ | 460 | /* A0 Active information Present */ |
460 | u8 db1_active_info; | 461 | u8 db1_active_info; |
461 | /* A0 Active information Present */ | 462 | /* B0, B1 Bar info data valid */ |
462 | u8 db1_bar_info_dv; | 463 | u8 db1_bar_info_dv; |
463 | /* B0, B1 Bar info data valid */ | 464 | /* S0, S1 scan information */ |
464 | u8 db1_scan_info; | 465 | u8 db1_scan_info; |
465 | /* S0, S1 scan information */ | 466 | /* C0, C1 colorimetry */ |
466 | u8 db2_colorimetry; | 467 | u8 db2_colorimetry; |
467 | /* C0, C1 colorimetry */ | 468 | /* M0, M1 Aspect ratio (4:3, 16:9) */ |
468 | u8 db2_aspect_ratio; | 469 | u8 db2_aspect_ratio; |
469 | /* M0, M1 Aspect ratio (4:3, 16:9) */ | 470 | /* R0...R3 Active format aspect ratio */ |
470 | u8 db2_active_fmt_ar; | 471 | u8 db2_active_fmt_ar; |
471 | /* R0...R3 Active format aspect ratio */ | 472 | /* ITC IT content. */ |
472 | u8 db3_itc; | 473 | u8 db3_itc; |
473 | /* ITC IT content. */ | 474 | /* EC0, EC1, EC2 Extended colorimetry */ |
474 | u8 db3_ec; | 475 | u8 db3_ec; |
475 | /* EC0, EC1, EC2 Extended colorimetry */ | 476 | /* Q1, Q0 Quantization range */ |
476 | u8 db3_q_range; | 477 | u8 db3_q_range; |
477 | /* Q1, Q0 Quantization range */ | 478 | /* SC1, SC0 Non-uniform picture scaling */ |
478 | u8 db3_nup_scaling; | 479 | u8 db3_nup_scaling; |
479 | /* SC1, SC0 Non-uniform picture scaling */ | 480 | /* VIC0..6 Video format identification */ |
480 | u8 db4_videocode; | 481 | u8 db4_videocode; |
481 | /* VIC0..6 Video format identification */ | 482 | /* PR0..PR3 Pixel repetition factor */ |
482 | u8 db5_pixel_repeat; | 483 | u8 db5_pixel_repeat; |
483 | /* PR0..PR3 Pixel repetition factor */ | 484 | /* Line number end of top bar */ |
484 | u16 db6_7_line_eoftop; | 485 | u16 db6_7_line_eoftop; |
485 | /* Line number end of top bar */ | 486 | /* Line number start of bottom bar */ |
486 | u16 db8_9_line_sofbottom; | 487 | u16 db8_9_line_sofbottom; |
487 | /* Line number start of bottom bar */ | 488 | /* Pixel number end of left bar */ |
488 | u16 db10_11_pixel_eofleft; | 489 | u16 db10_11_pixel_eofleft; |
489 | /* Pixel number end of left bar */ | 490 | /* Pixel number start of right bar */ |
490 | u16 db12_13_pixel_sofright; | 491 | u16 db12_13_pixel_sofright; |
491 | /* Pixel number start of right bar */ | ||
492 | }; | 492 | }; |
493 | /* | 493 | /* |
494 | * Refer to section 8.2 in HDMI 1.3 specification for | 494 | * Refer to section 8.2 in HDMI 1.3 specification for |