From: Joe Thornber Date: Thu, 24 Oct 2013 18:10:28 +0000 (-0400) Subject: dm cache policy: remove return from void policy_remove_mapping X-Git-Tag: upstream/snapshot3+hdmi~3781^2~39 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3351937e4a6054a925d306e36c4cddc7723b1579;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git dm cache policy: remove return from void policy_remove_mapping No need to return from a void function. Signed-off-by: Joe Thornber Signed-off-by: Mike Snitzer --- diff --git a/drivers/md/dm-cache-policy-internal.h b/drivers/md/dm-cache-policy-internal.h index 0928abd..a75f7e7 100644 --- a/drivers/md/dm-cache-policy-internal.h +++ b/drivers/md/dm-cache-policy-internal.h @@ -61,7 +61,7 @@ static inline int policy_writeback_work(struct dm_cache_policy *p, static inline void policy_remove_mapping(struct dm_cache_policy *p, dm_oblock_t oblock) { - return p->remove_mapping(p, oblock); + p->remove_mapping(p, oblock); } static inline void policy_force_mapping(struct dm_cache_policy *p,