Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756792Ab2FHDtp (ORCPT ); Thu, 7 Jun 2012 23:49:45 -0400 Received: from dalsmrelay2.nai.com ([205.227.136.216]:52864 "EHLO dalsmrelay2.nai.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754285Ab2FHDto (ORCPT ); Thu, 7 Jun 2012 23:49:44 -0400 Message-ID: <4FD17600.4010707@snapgear.com> Date: Fri, 8 Jun 2012 13:48:16 +1000 From: Greg Ungerer User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:12.0) Gecko/20120430 Thunderbird/12.0.1 MIME-Version: 1.0 To: Geert Uytterhoeven CC: , Greg Ungerer , Philippe De Muyter , Subject: Re: [PATCH 3/5] m68k: delay, muldi3 - Use CONFIG_CPU_HAS_NO_MULDIV64 References: <1339094827-12349-1-git-send-email-geert@linux-m68k.org> <1339094827-12349-3-git-send-email-geert@linux-m68k.org> In-Reply-To: <1339094827-12349-3-git-send-email-geert@linux-m68k.org> Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2025 Lines: 54 On 08/06/12 04:47, Geert Uytterhoeven wrote: > instead of open coding CONFIG_M68000 || CONFIG_COLDFIRE > > Signed-off-by: Geert Uytterhoeven Acked-by: Greg Ungerer Regards Greg > arch/m68k/include/asm/delay.h | 2 +- > arch/m68k/lib/muldi3.c | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/arch/m68k/include/asm/delay.h b/arch/m68k/include/asm/delay.h > index 9c09bec..12d8fe4 100644 > --- a/arch/m68k/include/asm/delay.h > +++ b/arch/m68k/include/asm/delay.h > @@ -43,7 +43,7 @@ static inline void __delay(unsigned long loops) > extern void __bad_udelay(void); > > > -#if defined(CONFIG_M68000) || defined(CONFIG_COLDFIRE) > +#ifdef CONFIG_CPU_HAS_NO_MULDIV64 > /* > * The simpler m68k and ColdFire processors do not have a 32*32->64 > * multiply instruction. So we need to handle them a little differently. > diff --git a/arch/m68k/lib/muldi3.c b/arch/m68k/lib/muldi3.c > index 79e928a..ee5f0b1 100644 > --- a/arch/m68k/lib/muldi3.c > +++ b/arch/m68k/lib/muldi3.c > @@ -19,7 +19,7 @@ along with GNU CC; see the file COPYING. If not, write to > the Free Software Foundation, 59 Temple Place - Suite 330, > Boston, MA 02111-1307, USA. */ > > -#if defined(CONFIG_M68000) || defined(CONFIG_COLDFIRE) > +#ifdef CONFIG_CPU_HAS_NO_MULDIV64 > > #define SI_TYPE_SIZE 32 > #define __BITS4 (SI_TYPE_SIZE / 4) -- ------------------------------------------------------------------------ Greg Ungerer -- Principal Engineer EMAIL: gerg@snapgear.com SnapGear Group, McAfee PHONE: +61 7 3435 2888 8 Gardner Close FAX: +61 7 3217 5323 Milton, QLD, 4064, Australia WEB: http://www.SnapGear.com -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/