dect
/
linux-2.6
Archived
13
0
Fork 0

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>
This commit is contained in:
Lucas Stach 2012-12-19 21:38:53 +00:00 committed by Dave Airlie
parent 4049508988
commit 4026bfb39a
1 changed files with 2 additions and 0 deletions

View File

@ -239,6 +239,8 @@ int host1x_register_client(struct host1x *host1x, struct host1x_client *client)
}
}
client->host1x = host1x;
return 0;
}