From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark Jackson Date: Wed, 21 Aug 2013 16:51:12 +0100 Subject: [U-Boot] [PATCH V2 3/4] ARM: AM33xx: Move s_init to a common place In-Reply-To: <51F76C68.2050602@denx.de> References: <1375161535-29884-1-git-send-email-lokeshvutla@ti.com> <1375161535-29884-4-git-send-email-lokeshvutla@ti.com> <51F76C68.2050602@denx.de> Message-ID: <5214E1F0.2050800@newflow.co.uk> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 30/07/13 08:34, Heiko Schocher wrote: > Hello Lokesh, > > Am 30.07.2013 07:18, schrieb Lokesh Vutla: >> From: Heiko Schocher >> >> s_init has the same outline for all the AM33xx based >> board. So making it generic. >> This also helps in addition of new Soc with minimal changes. There's a new function now defined ... void enable_norboot_pin_mux(void) ... but our board *always* boots via NOR. All the required pinmux config is handled by enable_board_pin_mux(). Should I just define this an empty function ? Or should it be a "maybe unused" function ? Mark J.