From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alexandre Torgue Subject: Re: [PATCH] stmmac: fix noderef.cocci warnings Date: Fri, 4 Mar 2016 13:45:40 +0100 Message-ID: <56D98374.6020003@st.com> References: <201603030907.6ptkaLfJ%fengguang.wu@intel.com> <20160303015519.GA43500@lkp-nex06> Mime-Version: 1.0 Content-Type: text/plain; charset="windows-1252"; format=flowed Content-Transfer-Encoding: 7bit Cc: , , To: kbuild test robot , Giuseppe Cavallaro Return-path: In-Reply-To: <20160303015519.GA43500@lkp-nex06> Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org Hi, On 03/03/2016 02:55 AM, kbuild test robot wrote: > drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c:115:15-21: ERROR: application of sizeof to pointer > > sizeof when applied to a pointer typed expression gives the size of > the pointer > > Generated by: scripts/coccinelle/misc/noderef.cocci > > CC: Giuseppe Cavallaro > Signed-off-by: Fengguang Wu > --- > > stmmac_platform.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > --- a/drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c > +++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c > @@ -112,7 +112,7 @@ static struct stmmac_axi *stmmac_axi_set > if (!np) > return NULL; > > - axi = kzalloc(sizeof(axi), GFP_KERNEL); > + axi = kzalloc(sizeof(*axi), GFP_KERNEL); > if (!axi) > return ERR_PTR(-ENOMEM); > > Thanks. You can add my Acked-by: Alexandre Torgue -- Regards Alex