Commit 22559c5d authored by Andrew Morton's avatar Andrew Morton Committed by Jeff Garzik

ehea: make things static

ehea_flush_sq() and ehea_purge_sq() should be static.

Cc: Jeff Garzik <jeff@garzik.org>
Cc: Thomas Klein <osstklei@de.ibm.com>
Cc: Thomas Klein <tklein@de.ibm.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarJeff Garzik <jgarzik@redhat.com>
parent f62220d3
...@@ -2611,7 +2611,7 @@ static int ehea_stop(struct net_device *dev) ...@@ -2611,7 +2611,7 @@ static int ehea_stop(struct net_device *dev)
return ret; return ret;
} }
void ehea_purge_sq(struct ehea_qp *orig_qp) static void ehea_purge_sq(struct ehea_qp *orig_qp)
{ {
struct ehea_qp qp = *orig_qp; struct ehea_qp qp = *orig_qp;
struct ehea_qp_init_attr *init_attr = &qp.init_attr; struct ehea_qp_init_attr *init_attr = &qp.init_attr;
...@@ -2625,7 +2625,7 @@ void ehea_purge_sq(struct ehea_qp *orig_qp) ...@@ -2625,7 +2625,7 @@ void ehea_purge_sq(struct ehea_qp *orig_qp)
} }
} }
void ehea_flush_sq(struct ehea_port *port) static void ehea_flush_sq(struct ehea_port *port)
{ {
int i; int i;
......
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