From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from vps0.lunn.ch (vps0.lunn.ch [156.67.10.101]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id CB1B83019A6; Fri, 15 May 2026 13:29:25 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=156.67.10.101 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778851767; cv=none; b=q+PyyXt7q9F0v7ueP2atx9Vw6SYj5q/f9Q+VIyZu8TaUsu1SE/5NrkntwMPj2TciXrzZbmP8j2zdiUagX4VY8ms//xSKGWtMhUH5SvQEWC2dn56O0NMY3xKt2lOCx77kTxTe+jNLOkO8DeLZv/9c2Wh9at/4Y+37hmnNTIooX+Q= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778851767; c=relaxed/simple; bh=XIUgiWErOr8Vgk+y+Djnn3wMq7GgS7oG4jwouTtkGGc=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=NLG4Ntc37HRQzYAgIPzhmHQpglx9AV1z6PF05mP7sF94IisjNTyhUsqoZRPonqLvlfLtqKXoiWFc337X2ZKLvSzNlVXf0wNcKmkAnUnp5FUewe6jpsdV1hxqvwGJpLoLSrOZjgaP1zBwV022KEhxX3taCzFUPzgkVmzH8iqMLp4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=lunn.ch; spf=pass smtp.mailfrom=lunn.ch; dkim=pass (1024-bit key) header.d=lunn.ch header.i=@lunn.ch header.b=AkCu/XWH; arc=none smtp.client-ip=156.67.10.101 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=lunn.ch Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=lunn.ch Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=lunn.ch header.i=@lunn.ch header.b="AkCu/XWH" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lunn.ch; s=20171124; h=In-Reply-To:Content-Disposition:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:From:Sender:Reply-To:Subject: Date:Message-ID:To:Cc:MIME-Version:Content-Type:Content-Transfer-Encoding: Content-ID:Content-Description:Content-Disposition:In-Reply-To:References; bh=aBYz4Ap8D7toDhBxqXBip9hFqvrUEc4VGJT4db9Mgss=; b=AkCu/XWHFHY0/dceDYHjBvEK03 v1IfdSHaqZ2v4IDmQ6Bjjx4FWwcu/OuYcEOEe+PR3NxZFiT++a+tgxlnD4HF6DD42ahMul+j1FXBt KubdNa+6mFkwknEpFRxkkRFNudoRnyUgKek27twxon793VD+/SEEuFYAs4QR2bIb+mTI=; Received: from andrew by vps0.lunn.ch with local (Exim 4.94.2) (envelope-from ) id 1wNsbN-0034HQ-5p; Fri, 15 May 2026 15:29:17 +0200 Date: Fri, 15 May 2026 15:29:17 +0200 From: Andrew Lunn To: Robert Marko Cc: hkallweit1@gmail.com, linux@armlinux.org.uk, davem@davemloft.net, edumazet@google.com, kuba@kernel.org, pabeni@redhat.com, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, luka.perkov@sartura.hr Subject: Re: [PATCH net-next] net: phy: micrel: use dev_err_probe() Message-ID: <710a3749-ff96-4378-b026-abaa5b4af817@lunn.ch> References: <20260515120608.706361-1-robert.marko@sartura.hr> Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20260515120608.706361-1-robert.marko@sartura.hr> On Fri, May 15, 2026 at 02:05:40PM +0200, Robert Marko wrote: > Currently, during probe defferal the driver will print multiple times: > mscc-miim e20101a8.mdio: Cannot register MDIO bus (-517) > > So, lets silence that by using the dev_err_probe() for printing the probe > error as it handles probe defferal. > > Signed-off-by: Robert Marko Reviewed-by: Andrew Lunn Andrew