From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andre Przywara Date: Thu, 04 Apr 2013 12:30:30 +0200 Subject: [U-Boot] [PATCH 1/5] ARM: vexpress: move files in preparation for adding a new platform In-Reply-To: <20130404120634.4bffbce9@lilith> References: <1364996676-25361-1-git-send-email-andre.przywara@linaro.org> <1364996676-25361-2-git-send-email-andre.przywara@linaro.org> <20130404120634.4bffbce9@lilith> Message-ID: <515D5646.80409@linaro.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 04/04/2013 12:06 PM, Albert ARIBAUD wrote: > Hi Andre, > > On Wed, 3 Apr 2013 15:44:32 +0200, Andre Przywara > wrote: > >> From: Ryan Harkin >> >> The current ca9x4_ct_vxp platform contains support for a Versatile Express >> motherboard with a quad core A9 core tile. >> >> This patch is the first stage of making separating the Versatile Express >> motherboard code and the A9 specific code, before adding support for the >> dual core A5 core tile. >> >> Signed-off-by: Ryan Harkin >> Signed-off-by: Andre Przywara >> --- >> MAINTAINERS | 2 +- >> board/armltd/vexpress/Makefile | 2 +- >> board/armltd/vexpress/ca9x4_ct_vxp.c | 257 -------------------------------- >> board/armltd/vexpress/vexpress_common.c | 257 ++++++++++++++++++++++++++++++++ >> boards.cfg | 2 +- >> include/configs/ca9x4_ct_vxp.h | 198 ------------------------ >> include/configs/vexpress_common.h | 198 ++++++++++++++++++++++++ >> 7 files changed, 458 insertions(+), 458 deletions(-) >> delete mode 100644 board/armltd/vexpress/ca9x4_ct_vxp.c >> create mode 100644 board/armltd/vexpress/vexpress_common.c >> delete mode 100644 include/configs/ca9x4_ct_vxp.h >> create mode 100644 include/configs/vexpress_common.h > > This patch seems to not take moves into account, and rather, lists > these as deletes/creates. Did you use git format-patch, and if so, did > you use tne -M option? Hi Albert! Thanks for the -M hint, didn't know about it. Indeed it makes the patches more readable. Will use it in v2. > Also, the commit summary could be less generic, something like "ARM: > vexpress: rename board ca9x4_ct_vxp as vexpress_common". OK, will fix this. Thanks for the review, Andre.