diff options
| author | Takashi Iwai <[email protected]> | 2020-01-27 17:45:44 +0100 | 
|---|---|---|
| committer | Takashi Iwai <[email protected]> | 2020-01-27 17:45:44 +0100 | 
| commit | 90fb04f890bcb7384b4d4c216dc2640b0a870df3 (patch) | |
| tree | f4c35d625351cd8034bdd37bb3e19926bad674db /drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c | |
| parent | 9b132f2764e5a04bfb2e6c6f51cf5a729617d6a4 (diff) | |
| parent | a7196caf83ea9e9b56c5c8c95fbfe0d45acec46b (diff) | |
Merge tag 'asoc-v5.6' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus
ASoC: Updates for v5.6
A pretty big release this time around, a lot of new drivers and both
Morimoto-san and Takashi were doing subsystem wide updates as well:
 - Further big refactorings from Morimoto-san simplifying the core
   interfaces and moving things to the component level.
 - Transition of drivers to managed buffer allocation and removal of
   redundant PCM ioctls.
 - New driver support for Ingenic JZ4770, Mediatek MT6660, Qualcomm
   WCD934x and WSA881x, and Realtek RT700, RT711, RT715, RT1011, RT1015
   and RT1308.
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c | 7 | 
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c index 0ffc9447b573..01a793a0cbf7 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c @@ -142,7 +142,7 @@ int amdgpu_async_gfx_ring = 1;  int amdgpu_mcbp = 0;  int amdgpu_discovery = -1;  int amdgpu_mes = 0; -int amdgpu_noretry = 1; +int amdgpu_noretry;  int amdgpu_force_asic_type = -1;  struct amdgpu_mgpu_info mgpu_info = { @@ -588,7 +588,7 @@ MODULE_PARM_DESC(mes,  module_param_named(mes, amdgpu_mes, int, 0444);  MODULE_PARM_DESC(noretry, -	"Disable retry faults (0 = retry enabled, 1 = retry disabled (default))"); +	"Disable retry faults (0 = retry enabled (default), 1 = retry disabled)");  module_param_named(noretry, amdgpu_noretry, int, 0644);  /** @@ -1359,7 +1359,8 @@ static struct drm_driver kms_driver = {  	.driver_features =  	    DRIVER_USE_AGP | DRIVER_ATOMIC |  	    DRIVER_GEM | -	    DRIVER_RENDER | DRIVER_MODESET | DRIVER_SYNCOBJ, +	    DRIVER_RENDER | DRIVER_MODESET | DRIVER_SYNCOBJ | +	    DRIVER_SYNCOBJ_TIMELINE,  	.load = amdgpu_driver_load_kms,  	.open = amdgpu_driver_open_kms,  	.postclose = amdgpu_driver_postclose_kms,  |