[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20090920183018.GA26958@merkur.ravnborg.org>
Date: Sun, 20 Sep 2009 20:30:18 +0200
From: Sam Ravnborg <sam@...nborg.org>
To: lkml <linux-kernel@...r.kernel.org>,
linux-kbuild <linux-kbuild@...r.kernel.org>,
Albin Tonnerre <albin.tonnerre@...e-electrons.com>,
Russell King <linux@....linux.org.uk>,
Mikael Starvik <starvik@...s.com>,
Jesper Nilsson <jesper.nilsson@...s.com>,
Benjamin Herrenschmidt <benh@...nel.crashing.org>,
Paul Mackerras <paulus@...ba.org>,
"David S. Miller" <davem@...emloft.net>,
Jeff Dike <jdike@...toit.com>, Chris Zankel <chris@...kel.net>
Subject: Re: [PATCH] arm, cris, mips, sparc, powerpc, um, xtensa: fix build
with bash 4.0
> --- 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@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists