Re: [PATCH] arm, cris, mips, sparc, powerpc, um, xtensa: fix buildwith bash 4.0

From: Sam Ravnborg
Date: Sun Sep 20 2009 - 14:30:31 EST


> --- a/arch/mips/kernel/vmlinux.lds.S
> +++ b/arch/mips/kernel/vmlinux.lds.S
> @@ -10,7 +10,16 @@ PHDRS {
> text PT_LOAD FLAGS(7); /* RWX */
> note PT_NOTE FLAGS(4); /* R__ */
> }
> -jiffies = JIFFIES;
> +
> +ifdef CONFIG_32BIT
> + ifdef CONFIG_CPU_LITTLE_ENDIAN
> + jiffies = jiffies_64
> + else
> + jiffies = jiffies_64 + 4
> + endif
> +else
> + jiffies = jiffies_64
> +endif

This part miss ';' to terminate the assignment.
I already added this in my local patch but it was
accidently not included in the commit.

Sam
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/