Re: [patch] drm/amdgpu: precedence bug in amdgpu_device_init()

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Sat, Jun 18, 2016 at 4:38 AM, Dan Carpenter <dan.carpenter@xxxxxxxxxx> wrote:
> ! has higher precedence than bitwise & so we need to add parenthesis
> for this to work as intended.
>
> Fixes: 048765ad5af7 ('amdgpu: fix asic initialization for virtualized environments (v2)')
> Signed-off-by: Dan Carpenter <dan.carpenter@xxxxxxxxxx>

Applied.  thanks!

Alex

>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
> index 66482b4..6e92008 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
> @@ -1535,7 +1535,7 @@ int amdgpu_device_init(struct amdgpu_device *adev,
>         /* Post card if necessary */
>         if (!amdgpu_card_posted(adev) ||
>             (adev->virtualization.is_virtual &&
> -            !adev->virtualization.caps & AMDGPU_VIRT_CAPS_SRIOV_EN)) {
> +            !(adev->virtualization.caps & AMDGPU_VIRT_CAPS_SRIOV_EN))) {
>                 if (!adev->bios) {
>                         dev_err(adev->dev, "Card not posted and no BIOS - ignoring\n");
>                         return -EINVAL;
> _______________________________________________
> dri-devel mailing list
> dri-devel@xxxxxxxxxxxxxxxxxxxxx
> https://lists.freedesktop.org/mailman/listinfo/dri-devel
--
To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html



[Index of Archives]     [Kernel Development]     [Kernel Announce]     [Kernel Newbies]     [Linux Networking Development]     [Share Photos]     [IDE]     [Security]     [Git]     [Netfilter]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Device Mapper]

  Powered by Linux