mirror of https://gitee.com/openkylin/linux.git
drm/amdgpu: precedence bug in amdgpu_device_init()
! has higher precedence than bitwise & so we need to add parenthesis
for this to work as intended.
Fixes: 048765ad5a
('amdgpu: fix asic initialization for virtualized environments (v2)')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
0b10029d82
commit
48a70e1ca8
|
@ -1535,7 +1535,7 @@ int amdgpu_device_init(struct amdgpu_device *adev,
|
||||||
/* Post card if necessary */
|
/* Post card if necessary */
|
||||||
if (!amdgpu_card_posted(adev) ||
|
if (!amdgpu_card_posted(adev) ||
|
||||||
(adev->virtualization.is_virtual &&
|
(adev->virtualization.is_virtual &&
|
||||||
!adev->virtualization.caps & AMDGPU_VIRT_CAPS_SRIOV_EN)) {
|
!(adev->virtualization.caps & AMDGPU_VIRT_CAPS_SRIOV_EN))) {
|
||||||
if (!adev->bios) {
|
if (!adev->bios) {
|
||||||
dev_err(adev->dev, "Card not posted and no BIOS - ignoring\n");
|
dev_err(adev->dev, "Card not posted and no BIOS - ignoring\n");
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
Loading…
Reference in New Issue