Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5719e5eb authored by Colin Ian King's avatar Colin Ian King Committed by David S. Miller
Browse files

net: hinic: make functions set_ctrl0 and set_ctrl1 static



The functions set_ctrl0 and set_ctrl1 are local to the source and do
not need to be in global scope, so make them static.

Cleans up sparse warnings:
symbol 'set_ctrl0' was not declared. Should it be static?
symbol 'set_ctrl1' was not declared. Should it be static?

Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 257a7303
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -423,7 +423,7 @@ static irqreturn_t ceq_interrupt(int irq, void *data)
	return IRQ_HANDLED;
	return IRQ_HANDLED;
}
}


void set_ctrl0(struct hinic_eq *eq)
static void set_ctrl0(struct hinic_eq *eq)
{
{
	struct msix_entry *msix_entry = &eq->msix_entry;
	struct msix_entry *msix_entry = &eq->msix_entry;
	enum hinic_eq_type type = eq->type;
	enum hinic_eq_type type = eq->type;
@@ -474,7 +474,7 @@ void set_ctrl0(struct hinic_eq *eq)
	}
	}
}
}


void set_ctrl1(struct hinic_eq *eq)
static void set_ctrl1(struct hinic_eq *eq)
{
{
	enum hinic_eq_type type = eq->type;
	enum hinic_eq_type type = eq->type;
	u32 page_size_val, elem_size;
	u32 page_size_val, elem_size;