diff options
author | Yangbo Lu <yangbo.lu@nxp.com> | 2019-11-12 19:28:39 +0800 |
---|---|---|
committer | Peng Fan <peng.fan@nxp.com> | 2019-11-27 16:55:56 +0800 |
commit | 1eaffca076543addf86fc91778a0c9b9c7fcf3df (patch) | |
tree | f554f623724d3f1b69f94ebdd7589e589e6534cd /arch/powerpc/include | |
parent | d3eb317ea50ef763a5a1ef5ff4e2bc19498542d1 (diff) | |
download | u-boot-1eaffca076543addf86fc91778a0c9b9c7fcf3df.zip u-boot-1eaffca076543addf86fc91778a0c9b9c7fcf3df.tar.gz u-boot-1eaffca076543addf86fc91778a0c9b9c7fcf3df.tar.bz2 |
mpc83xx: remove unused clock.h
The clock.h was to define mxc_get_clock() providing clock value
to fsl_esdhc driver. Since fsl_esdhc driver is using global data
gd->arch.sdhc_clk directly now, we can remove this file.
Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
Diffstat (limited to 'arch/powerpc/include')
-rw-r--r-- | arch/powerpc/include/asm/arch-mpc83xx/clock.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/arch/powerpc/include/asm/arch-mpc83xx/clock.h b/arch/powerpc/include/asm/arch-mpc83xx/clock.h deleted file mode 100644 index d57e93c..0000000 --- a/arch/powerpc/include/asm/arch-mpc83xx/clock.h +++ /dev/null @@ -1,22 +0,0 @@ -/* - * (C) Copyright 2018 - * Mario Six, Guntermann & Drunck GmbH, mario.six@gdsys.cc - * - * SPDX-License-Identifier: GPL-2.0+ - */ - -#ifndef __ASM_POWERPC_CLOCK_H -#define __ASM_POWERPC_CLOCK_H - -/* Make fsl_esdhc driver happy */ -enum mxc_clock { - MXC_ESDHC_CLK, -}; - -DECLARE_GLOBAL_DATA_PTR; - -uint mxc_get_clock(int clk) -{ - return gd->arch.sdhc_clk; -} -#endif /* __ASM_POWERPC_CLOCK_H */ |