Searched refs:rgb_565 (Results 1 – 1 of 1) sorted by relevance
239 u16 rgb_565 = le16_to_cpu(*pixel); in argb_u16_from_RGB565() local240 s64 fp_r = drm_int2fixp((rgb_565 >> 11) & 0x1f); in argb_u16_from_RGB565()241 s64 fp_g = drm_int2fixp((rgb_565 >> 5) & 0x3f); in argb_u16_from_RGB565()242 s64 fp_b = drm_int2fixp(rgb_565 & 0x1f); in argb_u16_from_RGB565()