From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ramon Fried Date: Sun, 9 Jun 2019 07:51:38 +0300 Subject: [U-Boot] [PATCH 1/2] MIPS: add empty arch/clk.h Message-ID: <20190609045138.4409-1-rfried.dev@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de The file is needed for compilation of various drivers (IE. macb). Add empty implementation so compilation succeeds. Signed-off-by: Ramon Fried --- arch/mips/include/asm/mach-generic/clk.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 arch/mips/include/asm/mach-generic/clk.h diff --git a/arch/mips/include/asm/mach-generic/clk.h b/arch/mips/include/asm/mach-generic/clk.h new file mode 100644 index 0000000000..c01e0973cd --- /dev/null +++ b/arch/mips/include/asm/mach-generic/clk.h @@ -0,0 +1,11 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * Copyright (c) Ramon Fried + */ + +#ifndef __ASM_MIPS_ARCH_CLK_H +#define __ASM_MIPS_ARCH_CLK_H + +/* Note: This is a placeholder header for driver compilation. */ + +#endif -- 2.21.0