From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marek Vasut Date: Mon, 7 Dec 2015 14:23:26 +0100 Subject: [U-Boot] [PATCH 5/6] arm: socfpga: Introduce common board code In-Reply-To: <1449492828.2213.4.camel@altera.com> References: <1449348262-18488-1-git-send-email-marex@denx.de> <1449348262-18488-5-git-send-email-marex@denx.de> <1449492828.2213.4.camel@altera.com> Message-ID: <201512071423.26624.marex@denx.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Monday, December 07, 2015 at 01:53:48 PM, Chin Liang See wrote: [...] > > diff --git a/arch/arm/mach-socfpga/board.c b/arch/arm/mach > > -socfpga/board.c > > new file mode 100644 > > index 0000000..a41d089 > > --- /dev/null > > +++ b/arch/arm/mach-socfpga/board.c > > I am thinking this can go into misc.c instead new file. misc.c is bloated with random crap already, I would like to keep things orderly a little. Let's keep the board code and platform code separated. > > @@ -0,0 +1,64 @@ > > +/* > > + * Altera SoCFPGA common board code > > + * > > + * Copyright (C) 2015 Marek Vasut > > + * > > + * SPDX-License-Identifier: GPL-2.0+ > > + */ > > + > > +#include > > +#include > > +#include > > +#include > > + > > +#include > > +#include > > + > > +DECLARE_GLOBAL_DATA_PTR; > > + > > +void s_init(void) {} > > + > > +/* > > + * Miscellaneous platform dependent initialisations > > + */ > > +int board_init(void) > > I am thinking we can skip the board_init where it located at original > board folder. If user has unique board specific initialization, they > can still do it there. See my reply to 6/6 . Best regards, Marek Vasut