PLL1417X seem to be compatible with PLL0822X, as also seen in the
respective Linux kernel driver. Add an enum entry for the type, while
merely being an alias for PLL0822X.
Signed-off-by: Kaustabh Chakraborty <kauschluss@disroot.org>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
switch (pll_clk->type) {
case pll_0822x:
+ case pll_1417x:
drv_name = UBOOT_DM_CLK_SAMSUNG_PLL0822X;
break;
case pll_0831x:
enum samsung_pll_type {
pll_0822x,
pll_0831x,
+ pll_1417x,
};
void samsung_clk_register_pll(struct udevice *dev, void __iomem *base,