diff options
author | Pragat Pandya <pragat.pandya@gmail.com> | 2020-01-30 15:41:17 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-02-09 16:22:57 -0800 |
commit | 8b8822e32f35fffc4154a8cbaeb76974e4ab5344 (patch) | |
tree | 58c499fc49dd5f776526e748e8110222fe970431 | |
parent | 7ed674e26357f8722120f3ca03077af45dfae6fc (diff) |
staging: exfat: Remove unused struct 'part_info_t'
Remove global declaration of unused struct "part_info_t".
Structure "part_info_t" is defined in exfat.h and not referenced in any
other file.
Signed-off-by: Pragat Pandya <pragat.pandya@gmail.com>
Link: https://lore.kernel.org/r/20200130101118.15936-2-pragat.pandya@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/exfat/exfat.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/staging/exfat/exfat.h b/drivers/staging/exfat/exfat.h index 28d245b10e82..7d9bfea7a512 100644 --- a/drivers/staging/exfat/exfat.h +++ b/drivers/staging/exfat/exfat.h @@ -231,11 +231,6 @@ struct date_time_t { u16 MilliSecond; }; -struct part_info_t { - u32 Offset; /* start sector number of the partition */ - u32 Size; /* in sectors */ -}; - struct dev_info_t { u32 SecSize; /* sector size in bytes */ u32 DevSize; /* block device size in sectors */ |