diff options
| author | Lucas De Marchi <lucas.demarchi@intel.com> | 2021-06-03 09:54:25 -0700 | 
|---|---|---|
| committer | Lucas De Marchi <lucas.demarchi@intel.com> | 2021-06-04 16:49:31 -0700 | 
| commit | d8d123128c48721f8bcbd4700951f4cde723a0da (patch) | |
| tree | a8c004b22ff235c6c4ce3f02445d97d4c987c531 /lib/mpi/mpi-internal.h | |
| parent | e2bebb924d6f4cef14133ed0b198e6efec4a7aec (diff) | |
drm/i915/gvt: replace IS_GEN and friends with GRAPHICS_VER
This was done by the following semantic patch:
	@@ expression i915; @@
	- INTEL_GEN(i915)
	+ GRAPHICS_VER(i915)
	@@ expression i915; expression E; @@
	- INTEL_GEN(i915) >= E
	+ GRAPHICS_VER(i915) >= E
	@@ expression dev_priv; expression E; @@
	- !IS_GEN(dev_priv, E)
	+ GRAPHICS_VER(dev_priv) != E
	@@ expression dev_priv; expression E; @@
	- IS_GEN(dev_priv, E)
	+ GRAPHICS_VER(dev_priv) == E
	@@
	expression dev_priv;
	expression from, until;
	@@
	- IS_GEN_RANGE(dev_priv, from, until)
	+ IS_GRAPHICS_VER(dev_priv, from, until)
	@def@
	expression E;
	identifier id =~ "^gen$";
	@@
	- id = GRAPHICS_VER(E)
	+ ver = GRAPHICS_VER(E)
	@@
	identifier def.id;
	@@
	- id
	+ ver
It also takes care of renaming the variable we assign to GRAPHICS_VER()
so to use "ver" rather than "gen".
Cc: intel-gvt-dev@lists.freedesktop.org
Cc: Zhenyu Wang <zhenyuw@linux.intel.com>
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20210603165428.3625495-5-lucas.demarchi@intel.com
Diffstat (limited to 'lib/mpi/mpi-internal.h')
0 files changed, 0 insertions, 0 deletions
