mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-14 16:56:49 +07:00
Merge branch 'qed-static-checker'
Sudarsana Reddy Kalluru says: ==================== qed*: Fix the static checker warnings. The patch series addresses the static checker warnings introduced by the earlier patches related to qed/qede coalesce configuration support. ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
commit
c973f24d37
@ -489,8 +489,8 @@ struct qed_dev {
|
||||
|
||||
u32 int_mode;
|
||||
enum qed_coalescing_mode int_coalescing_mode;
|
||||
u8 rx_coalesce_usecs;
|
||||
u8 tx_coalesce_usecs;
|
||||
u16 rx_coalesce_usecs;
|
||||
u16 tx_coalesce_usecs;
|
||||
|
||||
/* Start Bar offset of first hwfn */
|
||||
void __iomem *regview;
|
||||
|
@ -430,11 +430,13 @@ static int qede_get_coalesce(struct net_device *dev,
|
||||
struct ethtool_coalesce *coal)
|
||||
{
|
||||
struct qede_dev *edev = netdev_priv(dev);
|
||||
u16 rxc, txc;
|
||||
|
||||
memset(coal, 0, sizeof(struct ethtool_coalesce));
|
||||
edev->ops->common->get_coalesce(edev->cdev,
|
||||
(u16 *)&coal->rx_coalesce_usecs,
|
||||
(u16 *)&coal->tx_coalesce_usecs);
|
||||
edev->ops->common->get_coalesce(edev->cdev, &rxc, &txc);
|
||||
|
||||
coal->rx_coalesce_usecs = rxc;
|
||||
coal->tx_coalesce_usecs = txc;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user