Lines Matching +full:software +full:- +full:driver
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
26 #include <nvif/driver.h>
35 return client->driver->suspend(client->object.priv); in nvif_client_suspend()
41 return client->driver->resume(client->object.priv); in nvif_client_resume()
47 nvif_object_dtor(&client->object); in nvif_client_dtor()
48 client->driver = NULL; in nvif_client_dtor()
58 ret = nvif_object_ctor(parent != client ? &parent->object : NULL, in nvif_client_ctor()
61 &client->object); in nvif_client_ctor()
65 client->object.client = client; in nvif_client_ctor()
66 client->object.handle = ~0; in nvif_client_ctor()
67 client->driver = parent->driver; in nvif_client_ctor()