diff options
author | Heiko Carstens <hca@linux.ibm.com> | 2022-11-18 15:21:49 +0100 |
---|---|---|
committer | Alexander Gordeev <agordeev@linux.ibm.com> | 2022-11-23 16:24:07 +0100 |
commit | 12a6c2c182c1160c46500d80c2f8922cd2747f41 (patch) | |
tree | c5daa40a26fe768e59ebc815ef6f33920f6301b0 /arch/s390/hypfs | |
parent | a78c2e31f6c769d7746989273cf9348944cf504d (diff) |
s390/hypfs: remove unused info_blk_hdr__pcpus() function
Remove unused info_blk_hdr__pcpus() function:
arch/s390/hypfs/hypfs_diag.c:71:21:
error: unused function 'info_blk_hdr__pcpus' [-Werror,-Wunused-function]
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
Signed-off-by: Alexander Gordeev <agordeev@linux.ibm.com>
Diffstat (limited to 'arch/s390/hypfs')
-rw-r--r-- | arch/s390/hypfs/hypfs_diag.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/arch/s390/hypfs/hypfs_diag.c b/arch/s390/hypfs/hypfs_diag.c index 6511d15ace45..c3be533c4cd3 100644 --- a/arch/s390/hypfs/hypfs_diag.c +++ b/arch/s390/hypfs/hypfs_diag.c @@ -68,14 +68,6 @@ static inline __u8 info_blk_hdr__flags(enum diag204_format type, void *hdr) return ((struct diag204_x_info_blk_hdr *)hdr)->flags; } -static inline __u16 info_blk_hdr__pcpus(enum diag204_format type, void *hdr) -{ - if (type == DIAG204_INFO_SIMPLE) - return ((struct diag204_info_blk_hdr *)hdr)->phys_cpus; - else /* DIAG204_INFO_EXT */ - return ((struct diag204_x_info_blk_hdr *)hdr)->phys_cpus; -} - /* Partition header */ static inline int part_hdr__size(enum diag204_format type) |