Searched refs:val__ (Results 1 – 1 of 1) sorted by relevance
| /include/linux/ |
| A D | iosys-map.h | 362 #define __iosys_map_rd_io(val__, vaddr_iomem__, type__) _Generic(val__, \ argument 363 u8: val__ = readb(vaddr_iomem__), \ 364 u16: val__ = readw(vaddr_iomem__), \ 365 u32: val__ = readl(vaddr_iomem__), \ 369 val__ = READ_ONCE(*(type__ *)(vaddr__)) 371 #define __iosys_map_wr_io(val__, vaddr_iomem__, type__) _Generic(val__, \ argument 372 u8: writeb(val__, vaddr_iomem__), \ 373 u16: writew(val__, vaddr_iomem__), \ 374 u32: writel(val__, vaddr_iomem__), \ 378 WRITE_ONCE(*(type__ *)(vaddr__), val__) [all …]
|
Completed in 3 milliseconds