mirror of https://gitee.com/openkylin/linux.git
drivers/net/qla3xxx.c: make 2 functions static
This patch makes two needlessly global functions static. Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
parent
7b49034399
commit
3664006ab9
|
@ -1815,14 +1815,14 @@ static void ql_process_mac_tx_intr(struct ql3_adapter *qdev,
|
||||||
atomic_inc(&qdev->tx_count);
|
atomic_inc(&qdev->tx_count);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ql_get_sbuf(struct ql3_adapter *qdev)
|
static void ql_get_sbuf(struct ql3_adapter *qdev)
|
||||||
{
|
{
|
||||||
if (++qdev->small_buf_index == NUM_SMALL_BUFFERS)
|
if (++qdev->small_buf_index == NUM_SMALL_BUFFERS)
|
||||||
qdev->small_buf_index = 0;
|
qdev->small_buf_index = 0;
|
||||||
qdev->small_buf_release_cnt++;
|
qdev->small_buf_release_cnt++;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct ql_rcv_buf_cb *ql_get_lbuf(struct ql3_adapter *qdev)
|
static struct ql_rcv_buf_cb *ql_get_lbuf(struct ql3_adapter *qdev)
|
||||||
{
|
{
|
||||||
struct ql_rcv_buf_cb *lrg_buf_cb = NULL;
|
struct ql_rcv_buf_cb *lrg_buf_cb = NULL;
|
||||||
lrg_buf_cb = &qdev->lrg_buf[qdev->lrg_buf_index];
|
lrg_buf_cb = &qdev->lrg_buf[qdev->lrg_buf_index];
|
||||||
|
|
Loading…
Reference in New Issue