From mboxrd@z Thu Jan 1 00:00:00 1970 From: Helge Deller Subject: Re: [PATCH] export length of os_hpmc vector Date: Sat, 03 Jan 2009 10:24:33 +0100 Message-ID: <495F2ED1.2000406@gmx.de> References: <20090103013540.GG5181@bombadil.infradead.org> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Cc: linux-parisc@vger.kernel.org, John David Anglin , gmsoft@tuxicoman.be To: Kyle McMartin Return-path: In-Reply-To: <20090103013540.GG5181@bombadil.infradead.org> List-ID: List-Id: linux-parisc.vger.kernel.org Kyle McMartin wrote: > diff --git a/arch/parisc/kernel/hpmc.S b/arch/parisc/kernel/hpmc.S > index 2cbf13b..5595a2f 100644 > --- a/arch/parisc/kernel/hpmc.S > +++ b/arch/parisc/kernel/hpmc.S > @@ -80,6 +80,7 @@ END(hpmc_pim_data) > > .import intr_save, code > ENTRY(os_hpmc) > +.os_hpmc: ENTRY(os_hpmc) already expands to os_hpmc: so you could > + .word .os_hpmc_end-.os_hpmc change this to .word .os_hpmc_end-os_hpmc and drop the local label ".os_hpmc" Helge