From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <4946E7DC.7010403@oracle.com> Date: Mon, 15 Dec 2008 15:27:24 -0800 From: Randy Dunlap MIME-Version: 1.0 To: Stephen Rothwell Subject: Re: linux-next: Tree for December 15 (MTD) References: <20081216020642.fc1007d9.sfr@canb.auug.org.au> In-Reply-To: <20081216020642.fc1007d9.sfr@canb.auug.org.au> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: linux-mtd@lists.infradead.org, linux-next@vger.kernel.org, David Woodhouse , LKML List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Stephen Rothwell wrote: > Hi all, > > Changes since 20081212: > > New tree: > boot-params > > Undropped tree: > mtd On i386 builds, I'm seeing build-r7137.out:mtd_dataflash.c:(.text+0x10dff4): undefined reference to `__umoddi3' build-r7137.out:mtd_dataflash.c:(.text+0x10e010): undefined reference to `__umoddi3' build-r7137.out:mtd_dataflash.c:(.text+0x10e09f): undefined reference to `__udivdi3' which are caused by % and / operations where the denominator is a variable: /* Sanity checks */ if ((instr->addr + instr->len) > mtd->size || (instr->len % priv->page_size) != 0 || (instr->addr % priv->page_size) != 0) return -EINVAL; ... /* Calculate flash page address; use block erase (for speed) if * we're at a block boundary and need to erase the whole block. */ pageaddr = instr->addr / priv->page_size; ~Randy