From e02c625de580a1bc8166c5f95f23a50fa59ee1bf Mon Sep 17 00:00:00 2001 From: Ondrej Zary Date: Sat, 18 Feb 2023 23:01:23 +0100 Subject: ata: pata_parport: Remove pi_swab16 and pi_swab32 Convert comm and kbic drivers to use standard swab16. Remove pi_swab16 and pi_swab32. Reviewed-by: Sergey Shtylyov Signed-off-by: Ondrej Zary Signed-off-by: Damien Le Moal --- include/linux/pata_parport.h | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'include/linux/pata_parport.h') diff --git a/include/linux/pata_parport.h b/include/linux/pata_parport.h index 58781846f282..458544fe5e6c 100644 --- a/include/linux/pata_parport.h +++ b/include/linux/pata_parport.h @@ -54,23 +54,6 @@ typedef struct pi_adapter PIA; /* for paride protocol modules */ #define r4w() (delay_p, inw(pi->port + 4)) #define r4l() (delay_p, inl(pi->port + 4)) -static inline u16 pi_swab16(char *b, int k) -{ - union { u16 u; char t[2]; } r; - - r.t[0] = b[2 * k + 1]; r.t[1] = b[2 * k]; - return r.u; -} - -static inline u32 pi_swab32(char *b, int k) -{ - union { u32 u; char f[4]; } r; - - r.f[0] = b[4 * k + 1]; r.f[1] = b[4 * k]; - r.f[2] = b[4 * k + 3]; r.f[3] = b[4 * k + 2]; - return r.u; -} - struct pi_protocol { char name[8]; -- cgit