mirror of https://github.com/torvalds/linux.git
drm/intel/bmg: Allow device ID usage with single-argument macros
When INTEL_BMG_G21_IDS were added as a subplatform, token concatenation
operator usage was omitted, making INTEL_BMG_IDS not usable with
single-argument macros.
Fix that by adding the missing operator.
Fixes: 78de8f8766 ("drm/xe: Handle Wa_22010954014 and Wa_14022085890 as device workarounds")
Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
Link: https://patch.msgid.link/20251112132220.516975-25-michal.winiarski@intel.com
Signed-off-by: Michał Winiarski <michal.winiarski@intel.com>
This commit is contained in:
parent
3b358c21f9
commit
aaecfadc22
|
|
@ -861,7 +861,7 @@
|
|||
MACRO__(0xE216, ## __VA_ARGS__)
|
||||
|
||||
#define INTEL_BMG_IDS(MACRO__, ...) \
|
||||
INTEL_BMG_G21_IDS(MACRO__, __VA_ARGS__), \
|
||||
INTEL_BMG_G21_IDS(MACRO__, ## __VA_ARGS__), \
|
||||
MACRO__(0xE220, ## __VA_ARGS__), \
|
||||
MACRO__(0xE221, ## __VA_ARGS__), \
|
||||
MACRO__(0xE222, ## __VA_ARGS__), \
|
||||
|
|
|
|||
Loading…
Reference in New Issue