diff options
| author | Marek Vasut <[email protected]> | 2025-03-23 16:58:48 +0100 |
|---|---|---|
| committer | Fabio Estevam <[email protected]> | 2025-03-24 08:51:35 -0300 |
| commit | e14dd5c35aa8098b024257d9ee0073d1ba6e0281 (patch) | |
| tree | 05f5879e944c1c6c8b2ca176d0c3c49bed1a81c3 /include/linux | |
| parent | 63fa94855078e87a72877b314fb5a118fb93dfaf (diff) | |
clk: clk-divider: Use struct udevice instead of struct device
Use U-Boot specific struct udevice instead of Linux compatibility
struct device in clk-divider clock registration.
Signed-off-by: Marek Vasut <[email protected]>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/clk-provider.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h index d44ead53079..198f3ff0e42 100644 --- a/include/linux/clk-provider.h +++ b/include/linux/clk-provider.h @@ -237,7 +237,7 @@ struct clk *clk_register_fixed_factor(struct device *dev, const char *name, const char *parent_name, unsigned long flags, unsigned int mult, unsigned int div); -struct clk *clk_register_divider(struct device *dev, const char *name, +struct clk *clk_register_divider(struct udevice *dev, const char *name, const char *parent_name, unsigned long flags, void __iomem *reg, u8 shift, u8 width, u8 clk_divider_flags); |
