Commit 691ac858 authored by Salil's avatar Salil Committed by Greg Kroah-Hartman

net: hns: Some checkpatch.pl script & warning fixes

commit b4957ab0 upstream.

This patch fixes some checkpatch.pl script caught errors and
warnings during the compilation time.

[ backported to 4.9.y to fix build warnings caused by the backporting of
  64ec10dc ("net: hns: Correct HNS RSS key set function") by Sasha
  - gregkh]
Signed-off-by: default avatarSalil Mehta <salil.mehta@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Cc: Sasha Levin <alexander.levin@microsoft.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 27a0856c
...@@ -86,12 +86,11 @@ static void hns_gmac_disable(void *mac_drv, enum mac_commom_mode mode) ...@@ -86,12 +86,11 @@ static void hns_gmac_disable(void *mac_drv, enum mac_commom_mode mode)
dsaf_set_dev_bit(drv, GMAC_PORT_EN_REG, GMAC_PORT_RX_EN_B, 0); dsaf_set_dev_bit(drv, GMAC_PORT_EN_REG, GMAC_PORT_RX_EN_B, 0);
} }
/** /* hns_gmac_get_en - get port enable
*hns_gmac_get_en - get port enable * @mac_drv:mac device
*@mac_drv:mac device * @rx:rx enable
*@rx:rx enable * @tx:tx enable
*@tx:tx enable */
*/
static void hns_gmac_get_en(void *mac_drv, u32 *rx, u32 *tx) static void hns_gmac_get_en(void *mac_drv, u32 *rx, u32 *tx)
{ {
struct mac_driver *drv = (struct mac_driver *)mac_drv; struct mac_driver *drv = (struct mac_driver *)mac_drv;
......
...@@ -70,7 +70,7 @@ enum dsaf_roce_qos_sl { ...@@ -70,7 +70,7 @@ enum dsaf_roce_qos_sl {
}; };
#define DSAF_STATS_READ(p, offset) (*((u64 *)((u8 *)(p) + (offset)))) #define DSAF_STATS_READ(p, offset) (*((u64 *)((u8 *)(p) + (offset))))
#define HNS_DSAF_IS_DEBUG(dev) (dev->dsaf_mode == DSAF_MODE_DISABLE_SP) #define HNS_DSAF_IS_DEBUG(dev) ((dev)->dsaf_mode == DSAF_MODE_DISABLE_SP)
enum hal_dsaf_mode { enum hal_dsaf_mode {
HRD_DSAF_NO_DSAF_MODE = 0x0, HRD_DSAF_NO_DSAF_MODE = 0x0,
......
...@@ -430,7 +430,6 @@ static void hns_rcb_ring_pair_get_cfg(struct ring_pair_cb *ring_pair_cb) ...@@ -430,7 +430,6 @@ static void hns_rcb_ring_pair_get_cfg(struct ring_pair_cb *ring_pair_cb)
static int hns_rcb_get_port_in_comm( static int hns_rcb_get_port_in_comm(
struct rcb_common_cb *rcb_common, int ring_idx) struct rcb_common_cb *rcb_common, int ring_idx)
{ {
return ring_idx / (rcb_common->max_q_per_vf * rcb_common->max_vfn); return ring_idx / (rcb_common->max_q_per_vf * rcb_common->max_vfn);
} }
......
...@@ -511,7 +511,8 @@ static void hns_nic_reuse_page(struct sk_buff *skb, int i, ...@@ -511,7 +511,8 @@ static void hns_nic_reuse_page(struct sk_buff *skb, int i,
int last_offset; int last_offset;
bool twobufs; bool twobufs;
twobufs = ((PAGE_SIZE < 8192) && hnae_buf_size(ring) == HNS_BUFFER_SIZE_2048); twobufs = ((PAGE_SIZE < 8192) &&
hnae_buf_size(ring) == HNS_BUFFER_SIZE_2048);
desc = &ring->desc[ring->next_to_clean]; desc = &ring->desc[ring->next_to_clean];
size = le16_to_cpu(desc->rx.size); size = le16_to_cpu(desc->rx.size);
...@@ -1700,7 +1701,7 @@ static void hns_nic_reset_subtask(struct hns_nic_priv *priv) ...@@ -1700,7 +1701,7 @@ static void hns_nic_reset_subtask(struct hns_nic_priv *priv)
static void hns_nic_service_event_complete(struct hns_nic_priv *priv) static void hns_nic_service_event_complete(struct hns_nic_priv *priv)
{ {
WARN_ON(!test_bit(NIC_STATE_SERVICE_SCHED, &priv->state)); WARN_ON(!test_bit(NIC_STATE_SERVICE_SCHED, &priv->state));
/* make sure to commit the things */
smp_mb__before_atomic(); smp_mb__before_atomic();
clear_bit(NIC_STATE_SERVICE_SCHED, &priv->state); clear_bit(NIC_STATE_SERVICE_SCHED, &priv->state);
} }
......
...@@ -1243,7 +1243,6 @@ hns_set_rss(struct net_device *netdev, const u32 *indir, const u8 *key, ...@@ -1243,7 +1243,6 @@ hns_set_rss(struct net_device *netdev, const u32 *indir, const u8 *key,
{ {
struct hns_nic_priv *priv = netdev_priv(netdev); struct hns_nic_priv *priv = netdev_priv(netdev);
struct hnae_ae_ops *ops; struct hnae_ae_ops *ops;
int ret;
if (AE_IS_VER1(priv->enet_ver)) { if (AE_IS_VER1(priv->enet_ver)) {
netdev_err(netdev, netdev_err(netdev,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment