diff options
author | Joe Thornber <ejt@redhat.com> | 2013-10-24 14:10:28 -0400 |
---|---|---|
committer | Mike Snitzer <snitzer@redhat.com> | 2013-11-09 18:20:16 -0500 |
commit | 3351937e4a6054a925d306e36c4cddc7723b1579 (patch) | |
tree | d85591d4c84a72c1040bb1512febd9ed38cb50eb /drivers/md/dm-cache-policy-internal.h | |
parent | 238f8363b6661fd9dd9aae854917ab9c661f3652 (diff) | |
download | linux-3351937e4a6054a925d306e36c4cddc7723b1579.tar.bz2 |
dm cache policy: remove return from void policy_remove_mapping
No need to return from a void function.
Signed-off-by: Joe Thornber <ejt@redhat.com>
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
Diffstat (limited to 'drivers/md/dm-cache-policy-internal.h')
-rw-r--r-- | drivers/md/dm-cache-policy-internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm-cache-policy-internal.h b/drivers/md/dm-cache-policy-internal.h index 0928abdc49f0..a75f7e7498eb 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, |