From d3dd1af9c3f4cc4bd881e51cf29ff0ea50720308 Mon Sep 17 00:00:00 2001 From: Vikram Mulukutla Date: Fri, 28 Oct 2016 14:06:12 -0700 Subject: [PATCH] dm-verity: Add a temporary dummy opaque struct declaration Upcoming dm-verity changes include a series that introduces an extern in dm-verity.h that is both useless (isn't defined) and causes a warning that breaks compilation. Introduce a dummy opaque struct to allow compilation and revert it later when the offending declaration is fixed. Change-Id: I82a911cf963367b1f311c5035bf894a380a76e54 Signed-off-by: Vikram Mulukutla --- drivers/md/dm-verity.h | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/md/dm-verity.h b/drivers/md/dm-verity.h index fb419f422d73..d6e0b8514ba4 100644 --- a/drivers/md/dm-verity.h +++ b/drivers/md/dm-verity.h @@ -30,6 +30,7 @@ enum verity_block_type { }; struct dm_verity_fec; +struct bvec_merge_data; struct dm_verity { struct dm_dev *data_dev;