parisc: iosapic.c: Fix sparse warnings
authorHelge Deller <deller@gmx.de>
Wed, 30 Aug 2023 09:59:55 +0000 (11:59 +0200)
committerHelge Deller <deller@gmx.de>
Thu, 31 Aug 2023 19:42:42 +0000 (21:42 +0200)
Signed-off-by: Helge Deller <deller@gmx.de>
drivers/parisc/iosapic.c
drivers/parisc/iosapic_private.h

index a7df764..a401146 100644 (file)
@@ -202,9 +202,9 @@ static inline void iosapic_write(void __iomem *iosapic, unsigned int reg, u32 va
 
 static DEFINE_SPINLOCK(iosapic_lock);
 
-static inline void iosapic_eoi(void __iomem *addr, unsigned int data)
+static inline void iosapic_eoi(__le32 __iomem *addr, __le32 data)
 {
-       __raw_writel(data, addr);
+       __raw_writel((__force u32)data, addr);
 }
 
 /*
index 73ecc65..bd8ff40 100644 (file)
@@ -118,8 +118,8 @@ struct iosapic_irt {
 struct vector_info {
        struct iosapic_info *iosapic;   /* I/O SAPIC this vector is on */
        struct irt_entry *irte;         /* IRT entry */
-       u32 __iomem *eoi_addr;          /* precalculate EOI reg address */
-       u32     eoi_data;               /* IA64: ?       PA: swapped txn_data */
+       __le32 __iomem *eoi_addr;       /* precalculate EOI reg address */
+       __le32  eoi_data;               /* IA64: ?       PA: swapped txn_data */
        int     txn_irq;                /* virtual IRQ number for processor */
        ulong   txn_addr;               /* IA64: id_eid  PA: partial HPA */
        u32     txn_data;               /* CPU interrupt bit */