From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1BDBBC433EF for ; Fri, 11 Feb 2022 19:44:54 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1352977AbiBKToy (ORCPT ); Fri, 11 Feb 2022 14:44:54 -0500 Received: from mxb-00190b01.gslb.pphosted.com ([23.128.96.19]:56720 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232686AbiBKTox (ORCPT ); Fri, 11 Feb 2022 14:44:53 -0500 Received: from vps0.lunn.ch (vps0.lunn.ch [185.16.172.187]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 6F2E813A for ; Fri, 11 Feb 2022 11:44:51 -0800 (PST) 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=s/jHQ2g/cXmj2a9q1rCQGBe/wruS5wxXGhUaNHMlyRM=; b=kF7OmOBEz4ZCRSs6pSgWc/KiqZ 7jyTd6qOIF3ghySVPuGbnxAnWBDJ+kcMQFP//yVMZNb2dtAbzBlGJtAjUPhwvynvFSmPTlWO8nd0/ SMhn40MOZugpvwQNhH85uPi8fYWLI9X3UbP/RFzPOx753iDnohGjz1resUuD7DOpZukg=; Received: from andrew by vps0.lunn.ch with local (Exim 4.94.2) (envelope-from ) id 1nIbqa-005VwB-Vm; Fri, 11 Feb 2022 20:44:48 +0100 Date: Fri, 11 Feb 2022 20:44:48 +0100 From: Andrew Lunn To: Luiz Angelo Daros de Luca Cc: netdev@vger.kernel.org, linus.walleij@linaro.org, vivien.didelot@gmail.com, f.fainelli@gmail.com, olteanv@gmail.com, davem@davemloft.net, kuba@kernel.org, alsi@bang-olufsen.dk, arinc.unal@arinc9.com, Frank Wunderlich Subject: Re: [PATCH net-next] net: dsa: realtek: realtek-mdio: reset before setup Message-ID: References: <20220211051403.3952-1-luizluca@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220211051403.3952-1-luizluca@gmail.com> Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org > diff --git a/drivers/net/dsa/realtek/realtek.h b/drivers/net/dsa/realtek/realtek.h > index ed5abf6cb3d6..e7d3e1bcf8b8 100644 > --- a/drivers/net/dsa/realtek/realtek.h > +++ b/drivers/net/dsa/realtek/realtek.h > @@ -5,14 +5,17 @@ > * Copyright (C) 2009-2010 Gabor Juhos > */ > > -#ifndef _REALTEK_SMI_H > -#define _REALTEK_SMI_H > +#ifndef _REALTEK_H > +#define _REALTEK_H > -#endif /* _REALTEK_SMI_H */ > +#endif /* _REALTEK_H */ These two hunks should probably be in a separate patch. At minimum, please mention it is in the commit message. Andrew