Lines Matching full:until
201 #define IS_DISPLAY_VERx100(__display, from, until) ( \ argument
204 DISPLAY_VERx100(__display) <= (until)))
208 * specified range [from, until). The lower bound is inclusive, the upper
211 * hardware issue is first present and another stepping ("until") at which a
218 * "STEP_FOREVER" can be passed as "until" for workarounds that have no upper
221 #define IS_DISPLAY_VERx100_STEP(__display, ipver, from, until) \ argument
223 IS_DISPLAY_STEP((__display), (from), (until)))
231 #define IS_DISPLAY_VER(__display, from, until) \ argument
232 (DISPLAY_VER(__display) >= (from) && DISPLAY_VER(__display) <= (until))
236 #define IS_DISPLAY_STEP(__display, since, until) \ argument
238 INTEL_DISPLAY_STEP(__display) >= (since) && INTEL_DISPLAY_STEP(__display) < (until))