net: hns3: Fix misleading parameter name
The input parameter "dev" of hns3_irq_handle() is indeed used as a tqp vector, it is misleadin. The struct member "flag" is used to indicate ring type, so rename it. Signed-off-by: Jian Shen <shenjian15@huawei.com> Signed-off-by: Peng Li <lipeng321@huawei.com> Signed-off-by: Salil Mehta <salil.mehta@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
c79301d8d9
commit
ef0c500961
|
@ -62,9 +62,9 @@ static const struct pci_device_id hns3_pci_tbl[] = {
|
|||
};
|
||||
MODULE_DEVICE_TABLE(pci, hns3_pci_tbl);
|
||||
|
||||
static irqreturn_t hns3_irq_handle(int irq, void *dev)
|
||||
static irqreturn_t hns3_irq_handle(int irq, void *vector)
|
||||
{
|
||||
struct hns3_enet_tqp_vector *tqp_vector = dev;
|
||||
struct hns3_enet_tqp_vector *tqp_vector = vector;
|
||||
|
||||
napi_schedule(&tqp_vector->napi);
|
||||
|
||||
|
|
|
@ -72,7 +72,7 @@ static int hclge_alloc_cmd_queue(struct hclge_dev *hdev, int ring_type)
|
|||
(ring_type == HCLGE_TYPE_CSQ) ? &hw->cmq.csq : &hw->cmq.crq;
|
||||
int ret;
|
||||
|
||||
ring->flag = ring_type;
|
||||
ring->ring_type = ring_type;
|
||||
ring->dev = hdev;
|
||||
|
||||
ret = hclge_alloc_cmd_desc(ring);
|
||||
|
@ -111,7 +111,7 @@ static void hclge_cmd_config_regs(struct hclge_cmq_ring *ring)
|
|||
struct hclge_dev *hdev = ring->dev;
|
||||
struct hclge_hw *hw = &hdev->hw;
|
||||
|
||||
if (ring->flag == HCLGE_TYPE_CSQ) {
|
||||
if (ring->ring_type == HCLGE_TYPE_CSQ) {
|
||||
hclge_write_dev(hw, HCLGE_NIC_CSQ_BASEADDR_L_REG,
|
||||
lower_32_bits(dma));
|
||||
hclge_write_dev(hw, HCLGE_NIC_CSQ_BASEADDR_H_REG,
|
||||
|
|
|
@ -45,7 +45,7 @@ struct hclge_cmq_ring {
|
|||
u16 desc_num;
|
||||
int next_to_use;
|
||||
int next_to_clean;
|
||||
u8 flag;
|
||||
u8 ring_type; /* cmq ring type */
|
||||
spinlock_t lock; /* Command queue lock */
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue