From: Sumit Garg Date: Wed, 1 Feb 2023 13:58:53 +0000 (+0530) Subject: net: dwc_eth_qos: Make eqos_get_tick_clk_rate callback optional X-Git-Tag: baikal/mips/sdk5.8.2~5^2~52^2~15 X-Git-Url: https://git.baikalelectronics.ru/?a=commitdiff_plain;h=e1cb0f076611e4a2d5286f00f2af88792dc837ab;p=uboot.git net: dwc_eth_qos: Make eqos_get_tick_clk_rate callback optional Signed-off-by: Sumit Garg Reviewed-by: Ramon Fried --- diff --git a/drivers/net/dwc_eth_qos.c b/drivers/net/dwc_eth_qos.c index afc47b56ff..753a912607 100644 --- a/drivers/net/dwc_eth_qos.c +++ b/drivers/net/dwc_eth_qos.c @@ -774,10 +774,13 @@ static int eqos_start(struct udevice *dev) pr_err("eqos_calibrate_pads() failed: %d", ret); goto err_stop_resets; } - rate = eqos->config->ops->eqos_get_tick_clk_rate(dev); - val = (rate / 1000000) - 1; - writel(val, &eqos->mac_regs->us_tic_counter); + if (eqos->config->ops->eqos_get_tick_clk_rate) { + rate = eqos->config->ops->eqos_get_tick_clk_rate(dev); + + val = (rate / 1000000) - 1; + writel(val, &eqos->mac_regs->us_tic_counter); + } /* * if PHY was already connected and configured,