From: Peng Fan Date: Thu, 11 Aug 2016 06:02:40 +0000 (+0800) Subject: imx-common: introduce is_mx6ull X-Git-Tag: v2016.11-rc2~19^2~39 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bbd1b07d30548b6829d7bc96a994134fde8e9cb4;p=platform%2Fkernel%2Fu-boot.git imx-common: introduce is_mx6ull Introduce is_mx6ull macro. Signed-off-by: Peng Fan Cc: Stefano Babic --- diff --git a/arch/arm/include/asm/imx-common/sys_proto.h b/arch/arm/include/asm/imx-common/sys_proto.h index 32f95b3..6ace8bb 100644 --- a/arch/arm/include/asm/imx-common/sys_proto.h +++ b/arch/arm/include/asm/imx-common/sys_proto.h @@ -33,6 +33,7 @@ #define is_mx6sx() (is_cpu_type(MXC_CPU_MX6SX)) #define is_mx6sl() (is_cpu_type(MXC_CPU_MX6SL)) #define is_mx6ul() (is_cpu_type(MXC_CPU_MX6UL)) +#define is_mx6ull() (is_cpu_type(MXC_CPU_MX6ULL)) u32 get_nr_cpus(void); u32 get_cpu_rev(void);