diff options
author | Jason Chen <b02280@freescale.com> | 2010-11-24 10:59:37 +0800 |
---|---|---|
committer | Jason Chen <b02280@freescale.com> | 2010-11-24 18:55:32 +0800 |
commit | 8b63429a2b0b18e4473a71fd49d2e57428eac7d3 (patch) | |
tree | 23124c056d6801ebec65cf695cb9adc04499ccb6 /include/linux | |
parent | 4eece2aefa79e97c4bc7b9ba43cecb0dd5acd31f (diff) |
ENGR00133954-2 ipuv3: remove FB_SYNC_EXT flag
FB_SYNC_EXT was used to represent ext clk, but actually, it represent ext sync.
Some applications do not recognize it, during fb_set_var ioctl may miss it,
which will cause fb display fail, for example X window startup.
Remove FB_SYNC_EXT flag, and choose ext clk support by ipu driver.
If you want to use ipu internal clk only, you can add int_clk to your video
option like below:
video=mxcdi0fb:RGB565,800x480M@55,int_clk
Signed-off-by: Jason Chen <b02280@freescale.com>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/ipu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/ipu.h b/include/linux/ipu.h index ab5867700ca2..3ecd6a3cad49 100644 --- a/include/linux/ipu.h +++ b/include/linux/ipu.h @@ -668,7 +668,7 @@ enum ipu_irq_line { */ typedef struct { unsigned datamask_en:1; - unsigned ext_clk:1; + unsigned int_clk:1; unsigned interlaced:1; unsigned odd_field_first:1; unsigned clksel_en:1; |