linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 06/10] [ARM] pxa: clean code in hardware.h
@ 2010-04-29  8:18 Haojian Zhuang
  2010-05-05  6:00 ` Eric Miao
  0 siblings, 1 reply; 2+ messages in thread
From: Haojian Zhuang @ 2010-04-29  8:18 UTC (permalink / raw)
  To: linux-arm-kernel



^ permalink raw reply	[flat|nested] 2+ messages in thread

* [PATCH 06/10] [ARM] pxa: clean code in hardware.h
  2010-04-29  8:18 [PATCH 06/10] [ARM] pxa: clean code in hardware.h Haojian Zhuang
@ 2010-05-05  6:00 ` Eric Miao
  0 siblings, 0 replies; 2+ messages in thread
From: Eric Miao @ 2010-05-05  6:00 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Apr 29, 2010 at 4:18 PM, Haojian Zhuang
<haojian.zhuang@gmail.com> wrote:
> From 214c0dd2536c7eb55359bb46deb9b1126e1af822 Mon Sep 17 00:00:00 2001
> From: Haojian Zhuang <haojian.zhuang@marvell.com>
> Date: Fri, 12 Mar 2010 08:53:47 -0500
> Subject: [PATCH] [ARM] pxa: clean code in hardware.h
>
> Avoid too much conditional compilation in hardware.h.
>

Mmm.... this avoids the trivial optimization of each CPU being
compiled in or not.

> Signed-off-by: Haojian Zhuang <haojian.zhuang@marvell.com>
> ---
> ?arch/arm/mach-pxa/include/mach/hardware.h | ? 27 ++++++---------------------
> ?1 files changed, 6 insertions(+), 21 deletions(-)
>
> diff --git a/arch/arm/mach-pxa/include/mach/hardware.h
> b/arch/arm/mach-pxa/include/mach/hardware.h
> index 3d8d8cb..6694643 100644
> --- a/arch/arm/mach-pxa/include/mach/hardware.h
> +++ b/arch/arm/mach-pxa/include/mach/hardware.h
> @@ -148,63 +148,48 @@
> ?#define __cpu_is_pxa27x(id) ? ?(0)
> ?#endif
>
> -#ifdef CONFIG_CPU_PXA300
> +#ifdef CONFIG_PXA3xx
> ?#define __cpu_is_pxa300(id) ? ? ? ? ? ? ? ? ? ? ? ? ? ?\
> ? ? ? ?({ ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?\
> ? ? ? ? ? ? ? ?unsigned int _id = (id) >> 4 & 0xfff; ? \
> ? ? ? ? ? ? ? ?_id == 0x688; ? ? ? ? ? ? ? ? ? ? ? ? ? \
> ? ? ? ? })
> -#else
> -#define __cpu_is_pxa300(id) ? ?(0)
> -#endif
>
> -#ifdef CONFIG_CPU_PXA310
> ?#define __cpu_is_pxa310(id) ? ? ? ? ? ? ? ? ? ? ? ? ? ?\
> ? ? ? ?({ ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?\
> ? ? ? ? ? ? ? ?unsigned int _id = (id) >> 4 & 0xfff; ? \
> ? ? ? ? ? ? ? ?_id == 0x689; ? ? ? ? ? ? ? ? ? ? ? ? ? \
> ? ? ? ? })
> -#else
> -#define __cpu_is_pxa310(id) ? ?(0)
> -#endif
>
> -#ifdef CONFIG_CPU_PXA320
> ?#define __cpu_is_pxa320(id) ? ? ? ? ? ? ? ? ? ? ? ? ? ?\
> ? ? ? ?({ ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?\
> ? ? ? ? ? ? ? ?unsigned int _id = (id) >> 4 & 0xfff; ? \
> ? ? ? ? ? ? ? ?_id == 0x603 || _id == 0x682; ? ? ? ? ? \
> ? ? ? ? })
> -#else
> -#define __cpu_is_pxa320(id) ? ?(0)
> -#endif
>
> -#ifdef CONFIG_CPU_PXA930
> ?#define __cpu_is_pxa930(id) ? ? ? ? ? ? ? ? ? ? ? ? ? ?\
> ? ? ? ?({ ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?\
> ? ? ? ? ? ? ? ?unsigned int _id = (id) >> 4 & 0xfff; ? \
> ? ? ? ? ? ? ? ?_id == 0x683; ? ? ? ? ? ? ? ? ? ? ? ? ? \
> ? ? ? ? })
> -#else
> -#define __cpu_is_pxa930(id) ? ?(0)
> -#endif
>
> -#ifdef CONFIG_CPU_PXA935
> ?#define __cpu_is_pxa935(id) ? ? ? ? ? ? ? ? ? ? ? ? ? ?\
> ? ? ? ?({ ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?\
> ? ? ? ? ? ? ? ?unsigned int _id = (id) >> 4 & 0xfff; ? \
> ? ? ? ? ? ? ? ?_id == 0x693; ? ? ? ? ? ? ? ? ? ? ? ? ? \
> ? ? ? ? })
> -#else
> -#define __cpu_is_pxa935(id) ? ?(0)
> -#endif
>
> -#ifdef CONFIG_CPU_PXA950
> ?#define __cpu_is_pxa950(id) ? ? ? ? ? ? ? ? ? ? ? ? ? ? \
> ? ? ? ?({ ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?\
> ? ? ? ? ? ? ? ?unsigned int _id = (id) >> 4 & 0xfff; ? \
> ? ? ? ? ? ? ? ?_id == 0x697; ? ? ? ? ? ? ? ? ? ? ? ? ? \
> ? ? ? ? })
> ?#else
> +#define __cpu_is_pxa300(id) ? ?(0)
> +#define __cpu_is_pxa310(id) ? ?(0)
> +#define __cpu_is_pxa320(id) ? ?(0)
> +#define __cpu_is_pxa930(id) ? ?(0)
> +#define __cpu_is_pxa935(id) ? ?(0)
> ?#define __cpu_is_pxa950(id) ? ?(0)
> ?#endif
>
> --
> 1.5.6.5
>

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-05-05  6:00 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-29  8:18 [PATCH 06/10] [ARM] pxa: clean code in hardware.h Haojian Zhuang
2010-05-05  6:00 ` Eric Miao

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).