From mboxrd@z Thu Jan 1 00:00:00 1970 From: Igor Grinberg Date: Mon, 31 Oct 2011 10:59:54 +0200 Subject: [U-Boot] [PATCH] pm9g45: add mach-type localy for the board In-Reply-To: <1319818270-28002-1-git-send-email-dimov@ronetix.at> References: <1319818270-28002-1-git-send-email-dimov@ronetix.at> Message-ID: <4EAE638A.2020009@compulab.co.il> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Asen, Same comments as for pm9261, hold here. On 10/28/11 18:11, Asen Chavdarov Dimov wrote: > > Signed-off-by: Asen Chavdarov Dimov > --- > board/ronetix/pm9g45/mach-type.h | 31 +++++++++++++++++++++++++++++++ > board/ronetix/pm9g45/pm9g45.c | 1 + > 2 files changed, 32 insertions(+), 0 deletions(-) > create mode 100644 board/ronetix/pm9g45/mach-type.h > > diff --git a/board/ronetix/pm9g45/mach-type.h b/board/ronetix/pm9g45/mach-type.h > new file mode 100644 > index 0000000..3f8902f > --- /dev/null > +++ b/board/ronetix/pm9g45/mach-type.h > @@ -0,0 +1,31 @@ > +/* > + * This was manually generated from arch/arm/include/asm/mach-types.h > + * and add this machine ID removed with commit > + * 47af6f61bcd9fdd5dcf389cff0a7406eba756c6. > + * Do fix this. > + */ > + > +#ifndef __ASM_ARM_MACH_TYPE_PM9G45_H > +#define __ASM_ARM_MACH_TYPE_PM9G45_H > + > +#ifndef __ASSEMBLY__ > +/* The type of machine we're running on */ > +extern unsigned int __machine_arch_type; > +#endif > + > +/* see arch/arm/kernel/arch.c for a description of these */ > +#define MACH_TYPE_PM9G45 2672 > + > +#ifdef CONFIG_MACH_PM9G45 > +# ifdef machine_arch_type > +# undef machine_arch_type > +# define machine_arch_type __machine_arch_type > +# else > +# define machine_arch_type MACH_TYPE_PM9G45 > +# endif > +# define machine_is_pm9g45() (machine_arch_type == MACH_TYPE_PM9G45) > +#else > +# define machine_is_pm9g45() (0) > +#endif > + > +#endif > diff --git a/board/ronetix/pm9g45/pm9g45.c b/board/ronetix/pm9g45/pm9g45.c > index f3374a4..9aff01a 100644 > --- a/board/ronetix/pm9g45/pm9g45.c > +++ b/board/ronetix/pm9g45/pm9g45.c > @@ -28,6 +28,7 @@ > */ > > #include > +#include "mach-type.h" > #include > #include > #include -- Regards, Igor.