diff options
| author | Joel Johnson <[email protected]> | 2020-06-19 22:45:47 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2020-06-23 14:43:23 -0400 |
| commit | d622c240587477b1b56acfc11f9eaf120e0405dd (patch) | |
| tree | 882a83d9dbb2c0035a1286b84453609f3d3432a5 /include | |
| parent | 4ff63383e3497389e66cf70943a83bdb1810462a (diff) | |
zfs: fix missing include for disk_partition definition
Commit 0528979fa7ab ("part: Drop disk_partition_t typedef") changed to
a struct. As a result it uncovered an apparent missing include in
zfs_common.h for part.h which actually contains the definition. The ZFS
handles the struct exclusively as pointers so it was only a warning.
warning: ‘struct disk_partition’ declared inside parameter list
will not be visible outside of this definition or declaration
void zfs_set_blk_dev(struct blk_desc *rbdd, struct disk_partition *info);
Signed-off-by: Joel Johnson <[email protected]>
Series-CC: Simon Glass <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/zfs_common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/zfs_common.h b/include/zfs_common.h index 027ba91b287..cb83e59e836 100644 --- a/include/zfs_common.h +++ b/include/zfs_common.h @@ -22,6 +22,8 @@ #ifndef __ZFS_COMMON__ #define __ZFS_COMMON__ +#include <part.h> + #define SECTOR_SIZE 0x200 #define SECTOR_BITS 9 |
