[PATCH v2 1/5] clk/qcom: apq8016: use BIT macro for clk en_vals
Heinrich Schuchardt
xypron.glpk at gmx.de
Wed Feb 12 21:24:05 CET 2025
Am 12. Februar 2025 08:01:27 MEZ schrieb Sam Day <me at samcday.com>:
>This reads a little bit nicer (IMO), and is consistent with the kernel.
>
>Signed-off-by: Sam Day <me at samcday.com>
Reviewed-by: Heinrich Schuchardt <xypron.glpk at gmx.de>
>---
> drivers/clk/qcom/clock-apq8016.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
>diff --git a/drivers/clk/qcom/clock-apq8016.c b/drivers/clk/qcom/clock-apq8016.c
>index b5def55dbc2ac671130624dec56592288a0ceb3d..0c247250bd92b2bc888ecb7dc0a06e808e087fc0 100644
>--- a/drivers/clk/qcom/clock-apq8016.c
>+++ b/drivers/clk/qcom/clock-apq8016.c
>@@ -54,8 +54,8 @@ static struct vote_clk gcc_blsp1_ahb_clk = {
> };
>
> static const struct gate_clk apq8016_clks[] = {
>- GATE_CLK(GCC_USB_HS_AHB_CLK, 0x41008, 0x00000001),
>- GATE_CLK(GCC_USB_HS_SYSTEM_CLK, 0x41004, 0x00000001),
>+ GATE_CLK(GCC_USB_HS_AHB_CLK, 0x41008, BIT(0)),
>+ GATE_CLK(GCC_USB_HS_SYSTEM_CLK, 0x41004, BIT(0)),
> };
>
> /* SDHCI */
>
More information about the U-Boot
mailing list