From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peng Fan Date: Thu, 20 Apr 2017 09:10:31 +0800 Subject: [U-Boot] [PATCH 2/2] asm-generic: global_data: change timebase_l/h to unsigned int In-Reply-To: <1492650631-15510-1-git-send-email-peng.fan@nxp.com> References: <1492650631-15510-1-git-send-email-peng.fan@nxp.com> Message-ID: <1492650631-15510-2-git-send-email-peng.fan@nxp.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Change type of timebase_l/h to unsigned int. Signed-off-by: Peng Fan Cc: Simon Glass Cc: Eddie Cai Cc: Jagan Teki Cc: York Sun Cc: "Robert P. J. Day" Cc: Michal Simek Cc: Tom Rini --- Buildman shows the following build failure, but not related this patch. aarch64: + orangepi_pc2 x86: + qemu-x86_64 qemu-x86_efi_payload64 chromebook_link64 include/asm-generic/global_data.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/asm-generic/global_data.h b/include/asm-generic/global_data.h index 1a77c98..51838b5 100644 --- a/include/asm-generic/global_data.h +++ b/include/asm-generic/global_data.h @@ -83,8 +83,8 @@ typedef struct global_data { #ifdef CONFIG_SYS_I2C_MXC void *srdata[10]; #endif - unsigned long timebase_h; - unsigned long timebase_l; + unsigned int timebase_h; + unsigned int timebase_l; #ifdef CONFIG_SYS_MALLOC_F_LEN unsigned long malloc_base; /* base address of early malloc() */ unsigned long malloc_limit; /* limit address */ -- 2.6.6