kernel/drivers/gpu/drm/i915/display/intel_dsi_vbt.c
.. .. @@ -133,9 +133,9 @@ 133 133 return ffs(intel_dsi->ports) - 1; 134 134 135 135 if (seq_port) { 136 - if (intel_dsi->ports & PORT_B)136 + if (intel_dsi->ports & BIT(PORT_B))137 137 return PORT_B; 138 - else if (intel_dsi->ports & PORT_C)138 + else if (intel_dsi->ports & BIT(PORT_C))139 139 return PORT_C; 140 140 } 141 141