diff options
| author | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2013-03-28 18:50:01 +0100 | 
|---|---|---|
| committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2013-03-28 18:50:01 +0100 | 
| commit | 009d75ccc11d27b9a083375a88bb93cb746b4800 (patch) | |
| tree | 12abe9fcf437d58b73ee1fa8d422548560deaae5 /common/lcd.c | |
| parent | 417c55803118eb8e350d5ab8ba6583fb39f4e2e3 (diff) | |
| parent | d53e340edf65ff253d3a7b06ebe60501045892e3 (diff) | |
| download | olio-uboot-2014.01-009d75ccc11d27b9a083375a88bb93cb746b4800.tar.xz olio-uboot-2014.01-009d75ccc11d27b9a083375a88bb93cb746b4800.zip | |
Merge branch 'u-boot/master' into 'u-boot-arm/master'
Conflicts:
	drivers/spi/tegra20_sflash.c
	include/fdtdec.h
	lib/fdtdec.c
Diffstat (limited to 'common/lcd.c')
| -rw-r--r-- | common/lcd.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/common/lcd.c b/common/lcd.c index 590bbb930..77914adbc 100644 --- a/common/lcd.c +++ b/common/lcd.c @@ -386,8 +386,6 @@ int drv_lcd_init (void)  	lcd_base = (void *)(gd->fb_base); -	lcd_get_size(&lcd_line_length); -  	lcd_init(lcd_base);		/* LCD initialization */  	/* Device initialization */ @@ -470,6 +468,8 @@ static int lcd_init(void *lcdbase)  	debug("[LCD] Initializing LCD frambuffer at %p\n", lcdbase);  	lcd_ctrl_init(lcdbase); +	lcd_get_size(&lcd_line_length); +	lcd_line_length = (panel_info.vl_col * NBITS(panel_info.vl_bpix)) / 8;  	lcd_is_enabled = 1;  	lcd_clear();  	lcd_enable (); |