mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 02:38:04 +02:00
amd/common: fix ASICREV_IS_POLARIS11_M for Polaris12
Cc: 17.0 <mesa-stable@lists.freedesktop.org> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Reviewed-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
6e9fb1de7f
commit
8c838730d0
1 changed files with 1 additions and 1 deletions
|
|
@ -157,7 +157,7 @@ enum {
|
|||
#define ASICREV_IS_POLARIS10_P(eChipRev)\
|
||||
((eChipRev >= VI_POLARIS10_P_A0) && (eChipRev < VI_POLARIS11_M_A0))
|
||||
#define ASICREV_IS_POLARIS11_M(eChipRev) \
|
||||
(eChipRev >= VI_POLARIS11_M_A0)
|
||||
(eChipRev >= VI_POLARIS11_M_A0 && eChipRev < VI_POLARIS12_V_A0)
|
||||
#define ASICREV_IS_POLARIS12_V(eChipRev)\
|
||||
(eChipRev >= VI_POLARIS12_V_A0)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue