Commit 4b8d4252 authored by Jan Kara's avatar Jan Kara

udf: Convert descriptor index definitions to enum

Convert index definitions from defines to enum. It is a shorter
description and easier to modify. Also remove VDS_POS_VOL_DESC_PTR since
it is unused.
Acked-by: default avatarPali Rohár <pali.rohar@gmail.com>
Signed-off-by: default avatarJan Kara <jack@suse.cz>
parent 67621675
...@@ -64,14 +64,15 @@ ...@@ -64,14 +64,15 @@
#include <linux/init.h> #include <linux/init.h>
#include <linux/uaccess.h> #include <linux/uaccess.h>
#define VDS_POS_PRIMARY_VOL_DESC 0 enum {
#define VDS_POS_UNALLOC_SPACE_DESC 1 VDS_POS_PRIMARY_VOL_DESC,
#define VDS_POS_LOGICAL_VOL_DESC 2 VDS_POS_UNALLOC_SPACE_DESC,
#define VDS_POS_PARTITION_DESC 3 VDS_POS_LOGICAL_VOL_DESC,
#define VDS_POS_IMP_USE_VOL_DESC 4 VDS_POS_PARTITION_DESC,
#define VDS_POS_VOL_DESC_PTR 5 VDS_POS_IMP_USE_VOL_DESC,
#define VDS_POS_TERMINATING_DESC 6 VDS_POS_TERMINATING_DESC,
#define VDS_POS_LENGTH 7 VDS_POS_LENGTH
};
#define VSD_FIRST_SECTOR_OFFSET 32768 #define VSD_FIRST_SECTOR_OFFSET 32768
#define VSD_MAX_SECTOR_OFFSET 0x800000 #define VSD_MAX_SECTOR_OFFSET 0x800000
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment