diff options
author | stephen hemminger <stephen@networkplumber.org> | 2014-06-11 03:30:13 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-06-11 22:39:19 (GMT) |
commit | f6479449957750175a2dbd9ddf051c04a072abd6 (patch) | |
tree | e16c7eb5eebab0dbddc947bdf5e45d21b9e452f9 /net | |
parent | 783e327b69e24924055359a4e5779d04c052974a (diff) | |
download | linux-f6479449957750175a2dbd9ddf051c04a072abd6.tar.xz |
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>
Diffstat (limited to 'net')
-rw-r--r-- | net/ceph/osd_client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ceph/osd_client.c b/net/ceph/osd_client.c index b0dfce7..05be0c1 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); } |