Lines Matching refs:op
172 #define MAKE_FALLBACK(op, sz) \ argument
173 static u##sz real_raw_read ## op(const volatile void __iomem *addr) \
175 WARN(1, "Invalid read" #op " at address %llx\n", \
180 static void real_raw_write ## op(u ## sz val, \
183 WARN(1, "Invalid writeq" #op " of 0x%llx at address %llx\n", \
218 #define MAKE_OP(op, sz) \ argument
219 u##sz __raw_read ## op(const volatile void __iomem *addr) \
224 return real_raw_read ## op(addr); \
230 EXPORT_SYMBOL(__raw_read ## op); \
232 void __raw_write ## op(u ## sz val, volatile void __iomem *addr) \
237 real_raw_write ## op(val, addr); \
245 EXPORT_SYMBOL(__raw_write ## op)