Commit 4665bdd5 authored by Varun Prakash's avatar Varun Prakash Committed by David S. Miller

cxgb3i, cxgb4i: fix symbol not declared sparse warning

Fix following sparse warnings
warning: symbol 'cxgb3i_ofld_init' was not declared. Should it be static?
warning: symbol 'cxgb4i_cplhandlers' was not declared. Should it be static?
warning: symbol 'cxgb4i_ofld_init' was not declared. Should it be static?
Signed-off-by: default avatarVarun Prakash <varun@chelsio.com>
Reviewed-by: default avatarSteve Wise <swise@opengridcomputing.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 9d5c44b7
...@@ -1028,7 +1028,7 @@ cxgb3_cpl_handler_func cxgb3i_cpl_handlers[NUM_CPL_CMDS] = { ...@@ -1028,7 +1028,7 @@ cxgb3_cpl_handler_func cxgb3i_cpl_handlers[NUM_CPL_CMDS] = {
* cxgb3i_ofld_init - allocate and initialize resources for each adapter found * cxgb3i_ofld_init - allocate and initialize resources for each adapter found
* @cdev: cxgbi adapter * @cdev: cxgbi adapter
*/ */
int cxgb3i_ofld_init(struct cxgbi_device *cdev) static int cxgb3i_ofld_init(struct cxgbi_device *cdev)
{ {
struct t3cdev *t3dev = (struct t3cdev *)cdev->lldev; struct t3cdev *t3dev = (struct t3cdev *)cdev->lldev;
struct adap_ports port; struct adap_ports port;
......
...@@ -1503,7 +1503,7 @@ static int init_act_open(struct cxgbi_sock *csk) ...@@ -1503,7 +1503,7 @@ static int init_act_open(struct cxgbi_sock *csk)
return -EINVAL; return -EINVAL;
} }
cxgb4i_cplhandler_func cxgb4i_cplhandlers[NUM_CPL_CMDS] = { static cxgb4i_cplhandler_func cxgb4i_cplhandlers[NUM_CPL_CMDS] = {
[CPL_ACT_ESTABLISH] = do_act_establish, [CPL_ACT_ESTABLISH] = do_act_establish,
[CPL_ACT_OPEN_RPL] = do_act_open_rpl, [CPL_ACT_OPEN_RPL] = do_act_open_rpl,
[CPL_PEER_CLOSE] = do_peer_close, [CPL_PEER_CLOSE] = do_peer_close,
...@@ -1519,7 +1519,7 @@ cxgb4i_cplhandler_func cxgb4i_cplhandlers[NUM_CPL_CMDS] = { ...@@ -1519,7 +1519,7 @@ cxgb4i_cplhandler_func cxgb4i_cplhandlers[NUM_CPL_CMDS] = {
[CPL_RX_DATA] = do_rx_data, [CPL_RX_DATA] = do_rx_data,
}; };
int cxgb4i_ofld_init(struct cxgbi_device *cdev) static int cxgb4i_ofld_init(struct cxgbi_device *cdev)
{ {
int rc; int rc;
......
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