| .. | .. |
|---|
| 1 | | -/* SPDX-License-Identifier: GPL-2.0 */ |
|---|
| 1 | +/* SPDX-License-Identifier: MIT */ |
|---|
| 2 | 2 | #ifndef __NVIF_CLIENT_H__ |
|---|
| 3 | 3 | #define __NVIF_CLIENT_H__ |
|---|
| 4 | 4 | |
|---|
| .. | .. |
|---|
| 12 | 12 | bool super; |
|---|
| 13 | 13 | }; |
|---|
| 14 | 14 | |
|---|
| 15 | | -int nvif_client_init(struct nvif_client *parent, const char *name, u64 device, |
|---|
| 15 | +int nvif_client_ctor(struct nvif_client *parent, const char *name, u64 device, |
|---|
| 16 | 16 | struct nvif_client *); |
|---|
| 17 | | -void nvif_client_fini(struct nvif_client *); |
|---|
| 17 | +void nvif_client_dtor(struct nvif_client *); |
|---|
| 18 | 18 | int nvif_client_ioctl(struct nvif_client *, void *, u32); |
|---|
| 19 | 19 | int nvif_client_suspend(struct nvif_client *); |
|---|
| 20 | 20 | int nvif_client_resume(struct nvif_client *); |
|---|