Message ID | 20210615095651.GA7479@duo.ucw.cz |
---|---|
State | Accepted |
Commit | 39eb028183bc7378bb6187067e20bf6d8c836407 |
Headers | show |
Series | cxgb4: fix wrong shift. | expand |
On Tue 2021-06-15 11:22:42, David Miller wrote: > From: Pavel Machek <pavel@denx.de> > Date: Tue, 15 Jun 2021 11:56:51 +0200 > > > While fixing coverity warning, commit > > dd2c79677375c37f8f9f8d663eb4708495d595ef introduced typo in shift > > value. Fix that. > > > > Signed-off-by: Pavel Machek (CIP) <pavel@denx.de> > > Please repost with an appropriate Fixes: tag, thank you. Done, you should have PATCHv2 in your inbox. Best regards, Pavel -- DENX Software Engineering GmbH, Managing Director: Wolfgang Denk HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
diff --git a/drivers/net/ethernet/chelsio/cxgb4/cxgb4_filter.c b/drivers/net/ethernet/chelsio/cxgb4/cxgb4_filter.c index 22c9ac922eba..6260b3bebd2b 100644 --- a/drivers/net/ethernet/chelsio/cxgb4/cxgb4_filter.c +++ b/drivers/net/ethernet/chelsio/cxgb4/cxgb4_filter.c @@ -198,7 +198,7 @@ static void set_nat_params(struct adapter *adap, struct filter_entry *f, WORD_MASK, f->fs.nat_lip[3] | f->fs.nat_lip[2] << 8 | f->fs.nat_lip[1] << 16 | - (u64)f->fs.nat_lip[0] << 25, 1); + (u64)f->fs.nat_lip[0] << 24, 1); } }
While fixing coverity warning, commit dd2c79677375c37f8f9f8d663eb4708495d595ef introduced typo in shift value. Fix that. Signed-off-by: Pavel Machek (CIP) <pavel@denx.de>