aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/nouveau/nvif
diff options
context:
space:
mode:
authorBen Skeggs <bskeggs@redhat.com>2014-08-12 23:16:04 +1000
committerBen Skeggs <bskeggs@redhat.com>2014-08-15 07:58:39 +1000
commit8bd62a8327d84e622c61faeb969164bfa370d91e (patch)
tree707e470cf9e26fc2f880569c7c44a2b9ac6ca6e1 /drivers/gpu/drm/nouveau/nvif
parentdrm/gf100-/gr: fix -ENOSPC detection when allocating zbc table entries (diff)
downloadlinux-dev-8bd62a8327d84e622c61faeb969164bfa370d91e.tar.xz
linux-dev-8bd62a8327d84e622c61faeb969164bfa370d91e.zip
drm/nouveau/nvif: fix dac load detect method definition
A thinko made me turn this into a u16 when cleaning up. Spotted by coverity. Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau/nvif')
-rw-r--r--drivers/gpu/drm/nouveau/nvif/class.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/nouveau/nvif/class.h b/drivers/gpu/drm/nouveau/nvif/class.h
index cc81e0e5fd30..573491f84792 100644
--- a/drivers/gpu/drm/nouveau/nvif/class.h
+++ b/drivers/gpu/drm/nouveau/nvif/class.h
@@ -428,8 +428,8 @@ struct nv50_disp_dac_pwr_v0 {
struct nv50_disp_dac_load_v0 {
__u8 version;
__u8 load;
- __u16 data;
- __u8 pad04[4];
+ __u8 pad02[2];
+ __u32 data;
};
struct nv50_disp_sor_pwr_v0 {