Searched refs:type_t (Results 1 – 1 of 1) sorted by relevance
/include/linux/mlx5/ |
D | device.h | 145 #define MLX5_GET_BE(type_t, typ, p, fld) ({ \ argument 146 type_t tmp; \ 149 tmp = (__force type_t)MLX5_GET(typ, p, fld); \ 152 tmp = (__force type_t)cpu_to_be16(MLX5_GET(typ, p, fld)); \ 155 tmp = (__force type_t)cpu_to_be32(MLX5_GET(typ, p, fld)); \ 158 tmp = (__force type_t)MLX5_GET64_BE(typ, p, fld); \
|