diff options
author | Jani Nikula <jani.nikula@intel.com> | 2024-10-22 12:41:50 +0300 |
---|---|---|
committer | Jani Nikula <jani.nikula@intel.com> | 2024-10-29 16:14:04 +0200 |
commit | f719c2a2d1e7fb891d45998f241ff4273d7ae7e6 (patch) | |
tree | 85e9ac4e4d394203dfd391ed4a1651eaef82a9e9 /include | |
parent | 1db363f6979d1fc8a94ea561a50f79bac40d39e4 (diff) |
drm/intel/pciids: rename i915_pciids.h to just pciids.h
In preparation of sharing the PCI ID macros between i915 and xe, rename
i915_pciids.h to pciids.h.
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Cc: Tvrtko Ursulin <tursulin@ursulin.net>
Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com>
Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/835143845faa5310e4bb58405a8a0848392bbf06.1729590029.git.jani.nikula@intel.com
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/drm/intel/pciids.h (renamed from include/drm/intel/i915_pciids.h) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/drm/intel/i915_pciids.h b/include/drm/intel/pciids.h index 81d4dc5d9242..7632507af166 100644 --- a/include/drm/intel/i915_pciids.h +++ b/include/drm/intel/pciids.h @@ -22,8 +22,8 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. */ -#ifndef _I915_PCIIDS_H -#define _I915_PCIIDS_H +#ifndef __PCIIDS_H__ +#define __PCIIDS_H__ #ifdef __KERNEL__ #define INTEL_VGA_DEVICE(_id, _info) { \ @@ -822,4 +822,4 @@ MACRO__(0xB0A1, ## __VA_ARGS__), \ MACRO__(0xB0A2, ## __VA_ARGS__) -#endif /* _I915_PCIIDS_H */ +#endif /* __PCIIDS_H__ */ |