]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
clk: exynos: Add header guard for clk-pll.h
authorSam Protsenko <semen.protsenko@linaro.org>
Tue, 7 Nov 2023 21:22:00 +0000 (15:22 -0600)
committerMinkyu Kang <mk7.kang@samsung.com>
Mon, 13 Nov 2023 07:39:05 +0000 (16:39 +0900)
The clk-pll.h is going to be included in multiple files soon. Add
missing header guard to prevent possible build errors in future.

Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>
Fixes: 166097e87753 ("clk: exynos: add clock driver for Exynos7420 Soc")
Reviewed-by: Sean Anderson <seanga2@gmail.com>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
drivers/clk/exynos/clk-pll.h

index c79aac44258b10dccfe83c38d504a6790cc9d79e..7b7af5e67612d2c16b062b25204019ac55bcb199 100644 (file)
@@ -5,4 +5,9 @@
  * Thomas Abraham <thomas.ab@samsung.com>
  */
 
+#ifndef __EXYNOS_CLK_PLL_H
+#define __EXYNOS_CLK_PLL_H
+
 unsigned long pll145x_get_rate(unsigned int *con1, unsigned long fin_freq);
+
+#endif /* __EXYNOS_CLK_PLL_H */