drbd: Get rid of typedef drbd_work_cb
authorAndreas Gruenbacher <agruen@linbit.com>
Tue, 21 Dec 2010 11:38:39 +0000 (12:38 +0100)
committerPhilipp Reisner <philipp.reisner@linbit.com>
Thu, 8 Nov 2012 15:44:50 +0000 (16:44 +0100)
This type is not used anywhere else.

Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
drivers/block/drbd/drbd_int.h

index 837ac36f2d3058ee5b3d4311e40e569913c68768..3a046e418aa4c602905d41a017360307b37ddfcf 100644 (file)
@@ -643,11 +643,9 @@ static inline enum drbd_thread_state get_t_state(struct drbd_thread *thi)
        return thi->t_state;
 }
 
-struct drbd_work;
-typedef int (*drbd_work_cb)(struct drbd_work *, int cancel);
 struct drbd_work {
        struct list_head list;
-       drbd_work_cb cb;
+       int (*cb)(struct drbd_work *, int cancel);
        union {
                struct drbd_conf *mdev;
                struct drbd_tconn *tconn;
This page took 0.030033 seconds and 5 git commands to generate.