mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
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
1 changed files with 2 additions and 2 deletions
|
@ -1815,14 +1815,14 @@ static void ql_process_mac_tx_intr(struct ql3_adapter *qdev,
|
|||
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)
|
||||
qdev->small_buf_index = 0;
|
||||
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;
|
||||
lrg_buf_cb = &qdev->lrg_buf[qdev->lrg_buf_index];
|
||||
|
|
Loading…
Reference in a new issue