forked from Minki/linux
drm/nouveau/disp/nv50-gp10x: fix coverity warning
Change values to u32, there's no need for them to be 64-bit. Reported-by: Colin Ian King <colin.king@canonical.com> Suggested-by: Ilia Mirkin <imirkin@alum.mit.edu> Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
This commit is contained in:
parent
f7fbbf2cca
commit
7a26c92367
@ -52,7 +52,7 @@ void
|
||||
gf119_disp_chan_intr(struct nv50_disp_chan *chan, bool en)
|
||||
{
|
||||
struct nvkm_device *device = chan->disp->base.engine.subdev.device;
|
||||
const u64 mask = 0x00000001 << chan->chid.user;
|
||||
const u32 mask = 0x00000001 << chan->chid.user;
|
||||
if (!en) {
|
||||
nvkm_mask(device, 0x610090, mask, 0x00000000);
|
||||
nvkm_mask(device, 0x6100a0, mask, 0x00000000);
|
||||
|
@ -166,8 +166,8 @@ void
|
||||
nv50_disp_chan_intr(struct nv50_disp_chan *chan, bool en)
|
||||
{
|
||||
struct nvkm_device *device = chan->disp->base.engine.subdev.device;
|
||||
const u64 mask = 0x00010001 << chan->chid.user;
|
||||
const u64 data = en ? 0x00010000 : 0x00000000;
|
||||
const u32 mask = 0x00010001 << chan->chid.user;
|
||||
const u32 data = en ? 0x00010000 << chan->chid.user : 0x00000000;
|
||||
nvkm_mask(device, 0x610028, mask, data);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user