diff options
author | Dave Airlie <airlied@redhat.com> | 2016-03-16 11:09:00 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2016-03-16 11:09:00 +1000 |
commit | c51e034fedb002fcd0c012864d79d131cd629369 (patch) | |
tree | b5a970a48ba0ba587fb8a5b75589d0ac9e2583d1 | |
parent | 55f6fca3be37539fbb0a455deae400e04b968cdd (diff) | |
parent | 93fce954427effee89e44a976299b15dd75b4bbc (diff) |
Merge tag 'drm-amdkfd-next-fixes-2016-03-15' of git://people.freedesktop.org/~gabbayo/linux into drm-next
* tag 'drm-amdkfd-next-fixes-2016-03-15' of git://people.freedesktop.org/~gabbayo/linux:
drm/amdkfd: uninitialized variable in dbgdev_wave_control_set_registers()
-rw-r--r-- | drivers/gpu/drm/amd/amdkfd/kfd_dbgdev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_dbgdev.c b/drivers/gpu/drm/amd/amdkfd/kfd_dbgdev.c index c34c393e9aea..d5e19b5fbbfb 100644 --- a/drivers/gpu/drm/amd/amdkfd/kfd_dbgdev.c +++ b/drivers/gpu/drm/amd/amdkfd/kfd_dbgdev.c @@ -513,7 +513,7 @@ static int dbgdev_wave_control_set_registers( union SQ_CMD_BITS *in_reg_sq_cmd, union GRBM_GFX_INDEX_BITS *in_reg_gfx_index) { - int status; + int status = 0; union SQ_CMD_BITS reg_sq_cmd; union GRBM_GFX_INDEX_BITS reg_gfx_index; struct HsaDbgWaveMsgAMDGen2 *pMsg; |