bit_status        613 drivers/clk/clk-stm32f4.c 	int bit_status;
bit_status        622 drivers/clk/clk-stm32f4.c 		bit_status = !(readl(gate->reg) & BIT(pll->bit_rdy_idx));
bit_status        624 drivers/clk/clk-stm32f4.c 	} while (bit_status && --timeout);
bit_status        626 drivers/clk/clk-stm32f4.c 	return bit_status;
bit_status        923 drivers/clk/clk-stm32f4.c 	int bit_status;
bit_status        934 drivers/clk/clk-stm32f4.c 		bit_status = !(readl(gate->reg) & BIT(rgate->bit_rdy_idx));
bit_status        935 drivers/clk/clk-stm32f4.c 		if (bit_status)
bit_status        938 drivers/clk/clk-stm32f4.c 	} while (bit_status && --timeout);
bit_status        942 drivers/clk/clk-stm32f4.c 	return bit_status;
bit_status        164 drivers/clk/clk-stm32h7.c 	int bit_status;
bit_status        178 drivers/clk/clk-stm32h7.c 		bit_status = !(readl(gate->reg) & BIT(rgate->bit_rdy));
bit_status        180 drivers/clk/clk-stm32h7.c 		if (bit_status)
bit_status        183 drivers/clk/clk-stm32h7.c 	} while (bit_status && --timeout);
bit_status        185 drivers/clk/clk-stm32h7.c 	return bit_status;
bit_status        192 drivers/clk/clk-stm32h7.c 	int bit_status;
bit_status        201 drivers/clk/clk-stm32h7.c 		bit_status = !!(readl(gate->reg) & BIT(rgate->bit_rdy));
bit_status        203 drivers/clk/clk-stm32h7.c 		if (bit_status)
bit_status        206 drivers/clk/clk-stm32h7.c 	} while (bit_status && --timeout);
bit_status        764 drivers/clk/clk-stm32mp1.c 	int bit_status = 0;
bit_status        781 drivers/clk/clk-stm32mp1.c 		bit_status = !(readl_relaxed(clk_elem->reg) & PLL_RDY);
bit_status        783 drivers/clk/clk-stm32mp1.c 		if (bit_status)
bit_status        786 drivers/clk/clk-stm32mp1.c 	} while (bit_status && --timeout);
bit_status        791 drivers/clk/clk-stm32mp1.c 	return bit_status;