From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bin Meng Date: Wed, 7 Sep 2016 09:58:56 +0800 Subject: [U-Boot] [PATCH v6 01/10] x86: Move table csum into separate file In-Reply-To: <1471562611-93794-2-git-send-email-agraf@suse.de> References: <1471562611-93794-1-git-send-email-agraf@suse.de> <1471562611-93794-2-git-send-email-agraf@suse.de> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Fri, Aug 19, 2016 at 7:23 AM, Alexander Graf wrote: > We need the checksum function without all the other table functionality > soon, so let's split it out into its own C file. > > Signed-off-by: Alexander Graf > > --- > > v5 -> v6: > > - Move to C file > --- > arch/x86/include/asm/tables.h | 2 ++ > arch/x86/lib/tables.c | 12 ------------ > include/tables_csum.h | 12 ++++++++++++ > lib/Makefile | 1 + > lib/tables_csum.c | 20 ++++++++++++++++++++ > 5 files changed, 35 insertions(+), 12 deletions(-) > create mode 100644 include/tables_csum.h > create mode 100644 lib/tables_csum.c > Reviewed-by: Bin Meng