Lines Matching defs:c
237 #define writel_relaxed(v,c) ((void)__raw_writel((__force u32)cpu_to_le32(v),(c)))
238 #define readl_relaxed(c) ({ u32 __r = le32_to_cpu((__force __le32)__raw_readl(c)); __r; })
239 #define writeq_relaxed(v,c) ((void)__raw_writeq((__force u64)cpu_to_le64(v),(c)))
240 #define readq_relaxed(c) ({ u64 __r = le64_to_cpu((__force __le64)__raw_readq(c)); __r; })
242 #define writel(v,c) ({ __iowmb(); writel_relaxed((v),(c));})
243 #define readl(c) ({ u32 __v = readl_relaxed(c); __iormb(__v); __v; })
244 #define writeq(v,c) ({ __iowmb(); writeq_relaxed((v),(c));})
245 #define readq(c) ({ u64 __v = readq_relaxed(c); __iormb(__v); __v; })