From 06d01dbe000057e5df4af0f113242f0eba716340 Mon Sep 17 00:00:00 2001 From: wdenk Date: Fri, 14 Mar 2003 20:47:52 +0000 Subject: * Avoid flicker on the TRAB's VFD by synchronizing the enable with the HSYNC/VSYNC. Requires new CPLD code (Version 101 for Rev. 100 boards, version 153 for Rev. 200 boards). MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Patch by Vladimir Gurevich, 12 Mar 2003: Fix relocation problem of statically initialized string pointers in common/cmd_pci.c * Patch by Kai-Uwe Blöm, 12 Mar 2003: Cleanup & bug fixes for JFFS2 code: - the memory mangement was broken. It caused havoc on malloc by writing beyond the block boundaries. - the length calculation for files was wrong, sometimes resulting in short file reads. - data copying now optionally takes fragment version numbers into account, to avoid copying from older data. See doc/README.JFFS2 for details. --- board/innokom/innokom.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'board/innokom') diff --git a/board/innokom/innokom.c b/board/innokom/innokom.c index 17f6353..0176d9c 100644 --- a/board/innokom/innokom.c +++ b/board/innokom/innokom.c @@ -39,7 +39,7 @@ * The Innokom board has GPIO70 connected to SCLK which can be toggled * until all chips think that their current cycles are finished. */ -int i2c_init_board(void) +void i2c_init_board(void) { int i; @@ -53,8 +53,6 @@ int i2c_init_board(void) } /* set gpio pin to input */ GPDR(70) &= ~GPIO_bit(70); - - return 0; } -- cgit v1.1