git: 66765585ab7b - stable/14 - arm64: rockchip: Remove CRU_GATE macro
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 18 Oct 2023 14:34:26 UTC
The branch stable/14 has been updated by manu: URL: https://cgit.FreeBSD.org/src/commit/?id=66765585ab7bbd70c5f39906fedca472b348629a commit 66765585ab7bbd70c5f39906fedca472b348629a Author: Emmanuel Vadot <manu@FreeBSD.org> AuthorDate: 2023-09-21 10:59:26 +0000 Commit: Emmanuel Vadot <manu@FreeBSD.org> CommitDate: 2023-10-18 14:33:32 +0000 arm64: rockchip: Remove CRU_GATE macro It's unused now (cherry picked from commit 5b7fe78032a0d07995c1c1c005d82c3a1fe8a056) --- sys/arm64/rockchip/clk/rk_cru.h | 9 --------- 1 file changed, 9 deletions(-) diff --git a/sys/arm64/rockchip/clk/rk_cru.h b/sys/arm64/rockchip/clk/rk_cru.h index 55f230036199..5d45dc6ab859 100644 --- a/sys/arm64/rockchip/clk/rk_cru.h +++ b/sys/arm64/rockchip/clk/rk_cru.h @@ -216,15 +216,6 @@ struct rk_cru_gate { uint32_t shift; }; -#define CRU_GATE(idx, clkname, pname, o, s) \ - { \ - .id = idx, \ - .name = clkname, \ - .parent_name = pname, \ - .offset = o, \ - .shift = s, \ - }, - enum rk_clk_type { RK_CLK_UNDEFINED = 0, RK3066_CLK_PLL,