Lines Matching full:until
198 #define IS_DISPLAY_VERx100(__display, from, until) ( \ argument
201 DISPLAY_VERx100(__display) <= (until)))
205 * specified range [from, until). The lower bound is inclusive, the upper
208 * hardware issue is first present and another stepping ("until") at which a
215 * "STEP_FOREVER" can be passed as "until" for workarounds that have no upper
218 #define IS_DISPLAY_VERx100_STEP(__display, ipver, from, until) \ argument
220 IS_DISPLAY_STEP((__display), (from), (until)))
228 #define IS_DISPLAY_VER(__display, from, until) \ argument
229 (DISPLAY_VER(__display) >= (from) && DISPLAY_VER(__display) <= (until))
233 #define IS_DISPLAY_STEP(__display, since, until) \ argument
235 INTEL_DISPLAY_STEP(__display) >= (since) && INTEL_DISPLAY_STEP(__display) < (until))