Commit 8e61777d authored by Sachin Kamat's avatar Sachin Kamat Committed by David S. Miller

net: bnx2x: Staticize local symbols

Local symbols used only in this file are made static.
Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Cc: Eilon Greenstein <eilong@broadcom.com>
Cc: Ariel Elior <ariele@broadcom.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent cd738c4e
...@@ -2802,7 +2802,7 @@ struct set_vf_state_cookie { ...@@ -2802,7 +2802,7 @@ struct set_vf_state_cookie {
u8 state; u8 state;
}; };
void bnx2x_set_vf_state(void *cookie) static void bnx2x_set_vf_state(void *cookie)
{ {
struct set_vf_state_cookie *p = (struct set_vf_state_cookie *)cookie; struct set_vf_state_cookie *p = (struct set_vf_state_cookie *)cookie;
...@@ -3222,8 +3222,9 @@ void bnx2x_disable_sriov(struct bnx2x *bp) ...@@ -3222,8 +3222,9 @@ void bnx2x_disable_sriov(struct bnx2x *bp)
pci_disable_sriov(bp->pdev); pci_disable_sriov(bp->pdev);
} }
int bnx2x_vf_ndo_prep(struct bnx2x *bp, int vfidx, struct bnx2x_virtf **vf, static int bnx2x_vf_ndo_prep(struct bnx2x *bp, int vfidx,
struct pf_vf_bulletin_content **bulletin) struct bnx2x_virtf **vf,
struct pf_vf_bulletin_content **bulletin)
{ {
if (bp->state != BNX2X_STATE_OPEN) { if (bp->state != BNX2X_STATE_OPEN) {
BNX2X_ERR("vf ndo called though PF is down\n"); BNX2X_ERR("vf ndo called though PF is down\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment