On May 2, 4:25 am, rong <[email protected]> wrote:
> A quick fix -
>
> in fs/nfs/nfsroot.c, search for a line having this (line 135, in
> 2.6.32)
>
> static const match_table_t tokens __initconst = {
>
> and make it
>
> static const match_table_t tokens /*__initconst */ = {
>
> You will then be able to compile it. By doing this, you waste a couple
> of hundreds of bytes as now tokens always exist as opposed to being
> freed after the kernel finishes initialization.
>

Thanks, that fixed it.  I tried a similar modification by modifying
the function declaration since it was close to where the error was
being thrown.

There must have been something in the error message to indicate an
data type error not a function prototype error that I missed.

Thanks again

-- 
unsubscribe: [email protected]
website: http://groups.google.com/group/android-kernel

Reply via email to