diff options
author | Dave Airlie <airlied@redhat.com> | 2017-04-29 05:49:54 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2017-04-29 05:49:54 +1000 |
commit | 53cecf1b0e301a881d0096568b58982d7474a8ae (patch) | |
tree | 000dc0c007f7c3d2be8d27bc93d0cafc3874a1e6 /drivers/gpu | |
parent | 97643d75b053cd2aa7b23a93a474ed3690e34384 (diff) | |
parent | 7a9d2001a16f11d30a1e128a067cf1aef2a99a70 (diff) | |
download | linux-53cecf1b0e301a881d0096568b58982d7474a8ae.tar.bz2 |
Merge branch 'drm-vmwgfx-next' of git://people.freedesktop.org/~syeh/repos_linux into drm-next
trivial patch.
* 'drm-vmwgfx-next' of git://people.freedesktop.org/~syeh/repos_linux:
drm/vmwgfx: Convert macro to octal representation
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/drm/vmwgfx/vmwgfx_drv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c b/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c index f6e936d90517..4a641555b960 100644 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c @@ -254,7 +254,7 @@ module_param_named(restrict_iommu, vmw_restrict_iommu, int, 0600); MODULE_PARM_DESC(force_coherent, "Force coherent TTM pages"); module_param_named(force_coherent, vmw_force_coherent, int, 0600); MODULE_PARM_DESC(restrict_dma_mask, "Restrict DMA mask to 44 bits with IOMMU"); -module_param_named(restrict_dma_mask, vmw_restrict_dma_mask, int, S_IRUSR | S_IWUSR); +module_param_named(restrict_dma_mask, vmw_restrict_dma_mask, int, 0600); MODULE_PARM_DESC(assume_16bpp, "Assume 16-bpp when filtering modes"); module_param_named(assume_16bpp, vmw_assume_16bpp, int, 0600); |