Re: [PATCH] net: stmmac: use dev_err_probe() for reporting mdio bus registration failure

From: Jakub Kicinski
Date: Wed Jun 01 2022 - 21:03:27 EST


On Wed, 1 Jun 2022 16:22:26 +0200 Rasmus Villemoes wrote:
> if (ret < 0) {
> - dev_err(priv->device,
> + dev_err_probe(priv->device, ret,
> "%s: MDIO bus (id: %d) registration failed",
> __func__, priv->plat->bus_id);

Please adjust the indent of the continuation lines.

And fix the spelling checkpatch also points out.