@@ -80,16 +80,12 @@ extern bool isa_io_special;
80
80
*
81
81
* in_8, in_le16, in_be16, in_le32, in_be32, in_le64, in_be64
82
82
* out_8, out_le16, out_be16, out_le32, out_be32, out_le64, out_be64
83
- * _insb, _insw_ns, _insl_ns , _outsb, _outsw_ns, _outsl_ns
83
+ * _insb, _insw, _insl , _outsb, _outsw, _outsl
84
84
*
85
85
* Those operate directly on a kernel virtual address. Note that the prototype
86
86
* for the out_* accessors has the arguments in opposite order from the usual
87
87
* linux PCI accessors. Unlike those, they take the address first and the value
88
88
* next.
89
- *
90
- * Note: I might drop the _ns suffix on the stream operations soon as it is
91
- * simply normal for stream operations to not swap in the first place.
92
- *
93
89
*/
94
90
95
91
/* -mprefixed can generate offsets beyond range, fall back hack */
@@ -228,19 +224,10 @@ static inline void out_be64(volatile u64 __iomem *addr, u64 val)
228
224
*/
229
225
extern void _insb (const volatile u8 __iomem * addr , void * buf , long count );
230
226
extern void _outsb (volatile u8 __iomem * addr ,const void * buf ,long count );
231
- extern void _insw_ns (const volatile u16 __iomem * addr , void * buf , long count );
232
- extern void _outsw_ns (volatile u16 __iomem * addr , const void * buf , long count );
233
- extern void _insl_ns (const volatile u32 __iomem * addr , void * buf , long count );
234
- extern void _outsl_ns (volatile u32 __iomem * addr , const void * buf , long count );
235
-
236
- /* The _ns naming is historical and will be removed. For now, just #define
237
- * the non _ns equivalent names
238
- */
239
- #define _insw _insw_ns
240
- #define _insl _insl_ns
241
- #define _outsw _outsw_ns
242
- #define _outsl _outsl_ns
243
-
227
+ extern void _insw (const volatile u16 __iomem * addr , void * buf , long count );
228
+ extern void _outsw (volatile u16 __iomem * addr , const void * buf , long count );
229
+ extern void _insl (const volatile u32 __iomem * addr , void * buf , long count );
230
+ extern void _outsl (volatile u32 __iomem * addr , const void * buf , long count );
244
231
245
232
/*
246
233
* memset_io, memcpy_toio, memcpy_fromio base implementations are out of line
0 commit comments