mirror of
https://github.com/torvalds/linux.git
synced 2024-12-28 22:02:28 +00:00
mlxsw: pci: Do not use MLXSW_PCI_SDQS_COUNT define
Use mlxsw_pci_sdq_count helper instead. Signed-off-by: Jiri Pirko <jiri@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
e4c870b1b4
commit
424e1114af
@ -497,6 +497,7 @@ static int mlxsw_pci_rdq_init(struct mlxsw_pci *mlxsw_pci, char *mbox,
|
|||||||
struct mlxsw_pci_queue *q)
|
struct mlxsw_pci_queue *q)
|
||||||
{
|
{
|
||||||
struct mlxsw_pci_queue_elem_info *elem_info;
|
struct mlxsw_pci_queue_elem_info *elem_info;
|
||||||
|
u8 sdq_count = mlxsw_pci_sdq_count(mlxsw_pci);
|
||||||
int i;
|
int i;
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
@ -504,9 +505,9 @@ static int mlxsw_pci_rdq_init(struct mlxsw_pci *mlxsw_pci, char *mbox,
|
|||||||
q->consumer_counter = 0;
|
q->consumer_counter = 0;
|
||||||
|
|
||||||
/* Set CQ of same number of this RDQ with base
|
/* Set CQ of same number of this RDQ with base
|
||||||
* above MLXSW_PCI_SDQS_MAX as the lower ones are assigned to SDQs.
|
* above SDQ count as the lower ones are assigned to SDQs.
|
||||||
*/
|
*/
|
||||||
mlxsw_cmd_mbox_sw2hw_dq_cq_set(mbox, q->num + MLXSW_PCI_SDQS_COUNT);
|
mlxsw_cmd_mbox_sw2hw_dq_cq_set(mbox, sdq_count + q->num);
|
||||||
mlxsw_cmd_mbox_sw2hw_dq_log2_dq_sz_set(mbox, 3); /* 8 pages */
|
mlxsw_cmd_mbox_sw2hw_dq_log2_dq_sz_set(mbox, 3); /* 8 pages */
|
||||||
for (i = 0; i < MLXSW_PCI_AQ_PAGES; i++) {
|
for (i = 0; i < MLXSW_PCI_AQ_PAGES; i++) {
|
||||||
dma_addr_t mapaddr = __mlxsw_pci_queue_page_get(q, i);
|
dma_addr_t mapaddr = __mlxsw_pci_queue_page_get(q, i);
|
||||||
|
Loading…
Reference in New Issue
Block a user