[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20201025144722.GF792004@lunn.ch>
Date: Sun, 25 Oct 2020 15:47:22 +0100
From: Andrew Lunn <andrew@...n.ch>
To: Tom Rix <trix@...hat.com>
Cc: Xu Yilun <yilun.xu@...el.com>, jesse.brandeburg@...el.com,
anthony.l.nguyen@...el.com, davem@...emloft.net, kuba@...nel.org,
mdf@...nel.org, lee.jones@...aro.org, linux-kernel@...r.kernel.org,
linux-fpga@...r.kernel.org, netdev@...r.kernel.org,
lgoncalv@...hat.com, hao.wu@...el.com,
Russ Weight <russell.h.weight@...el.com>
Subject: Re: [RFC PATCH 5/6] ethernet: dfl-eth-group: add DFL eth group
private feature driver
> > +u64 read_mac_stats(struct eth_com *ecom, unsigned int addr)
> > +{
> > + u32 data_l, data_h;
> > +
> > + if (eth_com_read_reg(ecom, addr, &data_l) ||
> > + eth_com_read_reg(ecom, addr + 1, &data_h))
> > + return 0xffffffffffffffffULL;
> return -1; ?
Since this is a u64 function, i expect you get a compiler
warning. Maybe only with W=1. It is better to use U64_MAX.
Andrew
Powered by blists - more mailing lists