Re: [PATCH v2 9/9] mmc: sdhci-cadence: add Altera Agilex5 SD6HC support
From: Krzysztof Kozlowski
Date: Mon Jun 29 2026 - 03:29:38 EST
On Sat, Jun 27, 2026 at 01:14:54PM -0700, Tanmay Kathpalia wrote:
> + rst_combophy = devm_reset_control_get_shared_deasserted(dev, "combophy");
> + if (IS_ERR(rst_combophy))
> + return dev_err_probe(dev, PTR_ERR(rst_combophy),
> + "failed to get combophy reset\n");
> +
> + /*
> + * Assert SDHCI core and SDMMC OCP/AXI bus resets together so their
> + * active periods overlap before both clock domains are released.
> + */
> + rst_sdhc = devm_reset_control_get_exclusive(dev, "sdhc-reset");
Binding has no reset-names property (just open the binding!), thus you
cannot use this.
Best regards,
Krzysztof