Commit 4026bfb39a3e63e32b3c4a648bb1ac1fd8c6b162

Authored by Lucas Stach
Committed by Dave Airlie
1 parent 4049508988

drm: tegra: don't leave clients host1x member uninitialized

No real problem for now, as nothing is using this, but leaving it
unitialized is asking for trouble later on.

Signed-off-by: Lucas Stach <dev@lynxeye.de>
Signed-off-by: Dave Airlie <airlied@redhat.com>

Showing 1 changed file with 2 additions and 0 deletions Side-by-side Diff

drivers/gpu/drm/tegra/host1x.c
... ... @@ -239,6 +239,8 @@
239 239 }
240 240 }
241 241  
  242 + client->host1x = host1x;
  243 +
242 244 return 0;
243 245 }
244 246