summaryrefslogtreecommitdiff
path: root/extras/volume_id
diff options
context:
space:
mode:
authorKarel Zak <kzak@redhat.com>2008-05-27 00:51:17 +0200
committerKay Sievers <kay.sievers@vrfy.org>2008-05-27 01:41:41 +0200
commit2aae673c967a16276c85726975cade2413b5307b (patch)
tree47e36e011af07c1154a8f404b2aef7b1c2f8e015 /extras/volume_id
parent941d40a0747a4cbbb306ba597ff02bbbbb49df96 (diff)
volume_id: remove unnecessary global variable
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'extras/volume_id')
-rw-r--r--extras/volume_id/lib/ddf_raid.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/extras/volume_id/lib/ddf_raid.c b/extras/volume_id/lib/ddf_raid.c
index 60837a48b1..2e83c08098 100644
--- a/extras/volume_id/lib/ddf_raid.c
+++ b/extras/volume_id/lib/ddf_raid.c
@@ -33,17 +33,18 @@
#define DDF_GUID_LENGTH 24
#define DDF_REV_LENGTH 8
-static struct ddf_header {
+struct ddf_header {
uint32_t signature;
uint32_t crc;
uint8_t guid[DDF_GUID_LENGTH];
uint8_t ddf_rev[DDF_REV_LENGTH];
-} PACKED *ddf;
+} PACKED;
int volume_id_probe_ddf_raid(struct volume_id *id, uint64_t off, uint64_t size)
{
uint64_t ddf_off = ((size / 0x200)-1) * 0x200;
const uint8_t *buf;
+ struct ddf_header *ddf;
info("probing at offset 0x%llx, size 0x%llx\n",
(unsigned long long) off, (unsigned long long) size);