[PATCH v2 1/5] clk/qcom: apq8016: use BIT macro for clk en_vals
Sam Day
me at samcday.com
Wed Feb 12 08:01:27 CET 2025
This reads a little bit nicer (IMO), and is consistent with the kernel.
Signed-off-by: Sam Day <me at samcday.com>
---
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 */
--
2.48.1
More information about the U-Boot
mailing list