aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorstephen hemminger <stephen@networkplumber.org>2014-06-10 20:30:13 -0700
committerDavid S. Miller <davem@davemloft.net>2014-06-11 15:39:19 -0700
commitf6479449957750175a2dbd9ddf051c04a072abd6 (patch)
treee16c7eb5eebab0dbddc947bdf5e45d21b9e452f9
parent783e327b69e24924055359a4e5779d04c052974a (diff)
downloadlinux-f6479449957750175a2dbd9ddf051c04a072abd6.tar.gz
ceph: remove bogus extern
Sparse complained about this bogus extern on definition of a function. Signed-off-by: Stephen Hemminger <stephen@networkplumber.org> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--net/ceph/osd_client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ceph/osd_client.c b/net/ceph/osd_client.c
index b0dfce77656a0b..05be0c1816958b 100644
--- a/net/ceph/osd_client.c
+++ b/net/ceph/osd_client.c
@@ -2491,7 +2491,7 @@ EXPORT_SYMBOL(ceph_osdc_sync);
* Call all pending notify callbacks - for use after a watch is
* unregistered, to make sure no more callbacks for it will be invoked
*/
-extern void ceph_osdc_flush_notifies(struct ceph_osd_client *osdc)
+void ceph_osdc_flush_notifies(struct ceph_osd_client *osdc)
{
flush_workqueue(osdc->notify_wq);
}