diff options
author | Peng Fan <Peng.Fan@freescale.com> | 2015-07-31 10:44:11 +0800 |
---|---|---|
committer | Peng Fan <Peng.Fan@freescale.com> | 2015-08-03 18:29:02 +0800 |
commit | f1be3cae0320a472db7944c43485eed378b74f58 (patch) | |
tree | c07474869d9e2e984d2c41d6fee6145f18de587a /include | |
parent | 738ace15de626866604ee927dc378c602de01fc8 (diff) | |
download | u-boot-imx-f1be3cae0320a472db7944c43485eed378b74f58.zip u-boot-imx-f1be3cae0320a472db7944c43485eed378b74f58.tar.gz u-boot-imx-f1be3cae0320a472db7944c43485eed378b74f58.tar.bz2 |
MLK-11263-2 video: epdc: move setup_waveform_file to board common
Since setup_waveform_file in different boards code have same implementation,
move setup_waveform_file to board common code. Also rename it to
board_setup_waveform_file
This patch also fix a bug when using flush_cache. We should pass
'waveform_buf' to flush_cache, but not a string named 'addr'.
Signed-off-by: Peng Fan <Peng.Fan@freescale.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/mxc_epdc_fb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mxc_epdc_fb.h b/include/mxc_epdc_fb.h index 4f16a96..d5a2136 100644 --- a/include/mxc_epdc_fb.h +++ b/include/mxc_epdc_fb.h @@ -555,7 +555,7 @@ enum { EPDC_VERSION_STEP_OFFSET = 0, }; -int setup_waveform_file(ulong waveform_buf); +int board_setup_waveform_file(ulong waveform_buf); int board_setup_logo_file(void *display_buf); void epdc_power_on(void); void epdc_power_off(void); |