diff options
author | Tom Rini <trini@konsulko.com> | 2024-10-29 07:36:48 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-10-29 10:05:30 -0600 |
commit | b1967f66f88942ba67f1cbacc91181036a5f25fc (patch) | |
tree | 26cbee7693122b1ecfd9cf958a2e9844f53abc06 /drivers/clk/microchip/mpfs_clk.h | |
parent | 1466ff7d833d79251b3cdecc4615e8c1586f8eda (diff) | |
parent | 239e4705099c7516f3d3cf958f3e540d635a4ed3 (diff) |
Merge https://source.denx.de/u-boot/custodians/u-boot-riscv
CI: https://source.denx.de/u-boot/custodians/u-boot-riscv/-/pipelines/23080
- board: migrate PolarFire to use OF_UPSTREAM
- dts: align DT with QEMU amd-microblaze-v-virt platform
- riscv: fix resume utility
Diffstat (limited to 'drivers/clk/microchip/mpfs_clk.h')
-rw-r--r-- | drivers/clk/microchip/mpfs_clk.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/clk/microchip/mpfs_clk.h b/drivers/clk/microchip/mpfs_clk.h index 72288cc971b..b8ad3ea7616 100644 --- a/drivers/clk/microchip/mpfs_clk.h +++ b/drivers/clk/microchip/mpfs_clk.h @@ -7,6 +7,7 @@ #define __MICROCHIP_MPFS_CLK_H #include <linux/clk-provider.h> +#include <regmap.h> /** * mpfs_clk_register_cfgs() - register configuration clocks * @@ -14,7 +15,7 @@ * @parent: a pointer to parent clock. * Return: zero on success, or a negative error code. */ -int mpfs_clk_register_cfgs(void __iomem *base, struct clk *parent); +int mpfs_clk_register_cfgs(struct clk *parent, struct regmap *regmap); /** * mpfs_clk_register_msspll() - register the mss pll * @@ -30,7 +31,7 @@ int mpfs_clk_register_msspll(void __iomem *base, struct clk *parent); * @dev: udevice representing the clock controller. * Return: zero on success, or a negative error code. */ -int mpfs_clk_register_periphs(void __iomem *base, struct udevice *dev); +int mpfs_clk_register_periphs(struct udevice *dev, struct regmap *regmap); /** * divider_get_val() - get the clock divider value * |