Commit abe3afac authored by Roland Dreier's avatar Roland Dreier

RDMA/ocrdma: Make needlessly global functions/structs static

Signed-off-by: default avatarRoland Dreier <roland@purestorage.com>
parent da496438
...@@ -159,7 +159,7 @@ enum ib_qp_state get_ibqp_state(enum ocrdma_qp_state qps) ...@@ -159,7 +159,7 @@ enum ib_qp_state get_ibqp_state(enum ocrdma_qp_state qps)
return IB_QPS_ERR; return IB_QPS_ERR;
} }
enum ocrdma_qp_state get_ocrdma_qp_state(enum ib_qp_state qps) static enum ocrdma_qp_state get_ocrdma_qp_state(enum ib_qp_state qps)
{ {
switch (qps) { switch (qps) {
case IB_QPS_RESET: case IB_QPS_RESET:
...@@ -384,7 +384,7 @@ static void ocrdma_free_eq_vect_gen2(struct ocrdma_dev *dev) ...@@ -384,7 +384,7 @@ static void ocrdma_free_eq_vect_gen2(struct ocrdma_dev *dev)
dev->nic_info.msix.start_vector -= 1; dev->nic_info.msix.start_vector -= 1;
} }
int ocrdma_mbx_delete_q(struct ocrdma_dev *dev, struct ocrdma_queue_info *q, static int ocrdma_mbx_delete_q(struct ocrdma_dev *dev, struct ocrdma_queue_info *q,
int queue_type) int queue_type)
{ {
u8 opcode = 0; u8 opcode = 0;
...@@ -516,7 +516,7 @@ static void ocrdma_destroy_qp_eqs(struct ocrdma_dev *dev) ...@@ -516,7 +516,7 @@ static void ocrdma_destroy_qp_eqs(struct ocrdma_dev *dev)
ocrdma_destroy_eq(dev, &dev->qp_eq_tbl[i]); ocrdma_destroy_eq(dev, &dev->qp_eq_tbl[i]);
} }
int ocrdma_mbx_mq_cq_create(struct ocrdma_dev *dev, static int ocrdma_mbx_mq_cq_create(struct ocrdma_dev *dev,
struct ocrdma_queue_info *cq, struct ocrdma_queue_info *cq,
struct ocrdma_queue_info *eq) struct ocrdma_queue_info *eq)
{ {
......
...@@ -58,7 +58,7 @@ static struct notifier_block ocrdma_inet6addr_notifier = { ...@@ -58,7 +58,7 @@ static struct notifier_block ocrdma_inet6addr_notifier = {
.notifier_call = ocrdma_inet6addr_event .notifier_call = ocrdma_inet6addr_event
}; };
int ocrdma_get_instance(void) static int ocrdma_get_instance(void)
{ {
int instance = 0; int instance = 0;
...@@ -265,7 +265,7 @@ static enum rdma_link_layer ocrdma_link_layer(struct ib_device *device, ...@@ -265,7 +265,7 @@ static enum rdma_link_layer ocrdma_link_layer(struct ib_device *device,
return IB_LINK_LAYER_ETHERNET; return IB_LINK_LAYER_ETHERNET;
} }
int ocrdma_register_device(struct ocrdma_dev *dev) static int ocrdma_register_device(struct ocrdma_dev *dev)
{ {
strlcpy(dev->ibdev.name, "ocrdma%d", IB_DEVICE_NAME_MAX); strlcpy(dev->ibdev.name, "ocrdma%d", IB_DEVICE_NAME_MAX);
ocrdma_get_guid(dev, (u8 *)&dev->ibdev.node_guid); ocrdma_get_guid(dev, (u8 *)&dev->ibdev.node_guid);
...@@ -528,7 +528,7 @@ static void ocrdma_event_handler(struct ocrdma_dev *dev, u32 event) ...@@ -528,7 +528,7 @@ static void ocrdma_event_handler(struct ocrdma_dev *dev, u32 event)
}; };
} }
struct ocrdma_driver ocrdma_drv = { static struct ocrdma_driver ocrdma_drv = {
.name = "ocrdma_driver", .name = "ocrdma_driver",
.add = ocrdma_add, .add = ocrdma_add,
.remove = ocrdma_remove, .remove = ocrdma_remove,
......
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