bdev/gpt: remove unused gpt->mbr field

Change-Id: If3cd7ee8251b5e311d5e1e9210085f8c2cbc83e1
Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
Reviewed-on: https://review.gerrithub.io/370746
Tested-by: SPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
This commit is contained in:
Daniel Verkamp 2017-07-21 13:00:41 -07:00 committed by Ben Walker
parent 13a622a591
commit 94174eec71
2 changed files with 0 additions and 2 deletions

View File

@ -231,7 +231,6 @@ spdk_gpt_check_mbr(struct spdk_gpt *gpt)
return -1;
}
gpt->mbr = mbr;
return 0;
}

View File

@ -52,7 +52,6 @@ struct spdk_gpt {
uint64_t lba_end;
uint64_t total_sectors;
uint32_t sector_size;
struct spdk_mbr *mbr;
struct spdk_gpt_header *header;
struct spdk_gpt_partition_entry *partitions;
};