diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-09-06 22:17:38 +0900 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-09-23 17:53:53 -0400 |
commit | 63a7578e4e7dc906e75b0bec5a2f3fe41c3720f4 (patch) | |
tree | 3c8e952ed36bd39aa138f5edf476e17d73fbea63 /arch/xtensa | |
parent | 7dc0789579b17859c61c085e4562b7985f05cc4d (diff) | |
download | u-boot-63a7578e4e7dc906e75b0bec5a2f3fe41c3720f4.tar.gz u-boot-63a7578e4e7dc906e75b0bec5a2f3fe41c3720f4.tar.bz2 u-boot-63a7578e4e7dc906e75b0bec5a2f3fe41c3720f4.zip |
arch, board: squash lines for immediate return
Remove unneeded variables and assignments.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Minkyu Kang <mk7.kang@samsung.com>
Reviewed-by: Angelo Dureghello <angelo@sysam.it>
Diffstat (limited to 'arch/xtensa')
-rw-r--r-- | arch/xtensa/lib/time.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/arch/xtensa/lib/time.c b/arch/xtensa/lib/time.c index 1332072ffe..915eb5185b 100644 --- a/arch/xtensa/lib/time.c +++ b/arch/xtensa/lib/time.c @@ -104,10 +104,7 @@ unsigned long long get_ticks(void) */ ulong get_tbclk(void) { - ulong tbclk; - - tbclk = CONFIG_SYS_HZ; - return tbclk; + return CONFIG_SYS_HZ; } #if XCHAL_HAVE_CCOUNT |