From: Rashika Kheria Date: Thu, 19 Dec 2013 09:45:02 +0000 (+0530) Subject: drivers: block: Move prototype declaration of function tl_abort_disk_io() to appropri... X-Git-Tag: v3.15-rc1~134^2~76 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ed54482b996d16159f3b2f6c03634d340a74dade;p=platform%2Fkernel%2Flinux-exynos.git drivers: block: Move prototype declaration of function tl_abort_disk_io() to appropriate header file from drbd_state.c Move the prototype declaration of function tl_abort_disk_io() from drbd/drbd_state.c to appropriate header file drbd/drbd_int.h because it is used by more than 2 files. This eliminates the following warnings in drbd/drbd_main.c: drivers/block/drbd/drbd_main.c:310:6: warning: no previous prototype for ‘tl_abort_disk_io’ [-Wmissing-prototypes] Signed-off-by: Rashika Kheria Reviewed-by: Josh Triplett Signed-off-by: Philipp Reisner --- diff --git a/drivers/block/drbd/drbd_int.h b/drivers/block/drbd/drbd_int.h index 0e06f0c..66239fa 100644 --- a/drivers/block/drbd/drbd_int.h +++ b/drivers/block/drbd/drbd_int.h @@ -65,6 +65,7 @@ extern unsigned int minor_count; extern bool disable_sendpage; extern bool allow_oos; +void tl_abort_disk_io(struct drbd_conf *mdev); #ifdef CONFIG_DRBD_FAULT_INJECTION extern int enable_faults; diff --git a/drivers/block/drbd/drbd_state.c b/drivers/block/drbd/drbd_state.c index 216d47b..120e1c0 100644 --- a/drivers/block/drbd/drbd_state.c +++ b/drivers/block/drbd/drbd_state.c @@ -29,9 +29,6 @@ #include "drbd_int.h" #include "drbd_req.h" -/* in drbd_main.c */ -extern void tl_abort_disk_io(struct drbd_conf *mdev); - struct after_state_chg_work { struct drbd_work w; union drbd_state os;