Commit 4bb4a746 authored by Ben Skeggs's avatar Ben Skeggs

drm/nouveau/bios/init: rename nvbios_init() to nvbios_devinit()

Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent 7eaf1198
...@@ -17,5 +17,5 @@ struct nvbios_init { ...@@ -17,5 +17,5 @@ struct nvbios_init {
}; };
int nvbios_exec(struct nvbios_init *); int nvbios_exec(struct nvbios_init *);
int nvbios_init(struct nvkm_subdev *, bool execute); int nvbios_post(struct nvkm_subdev *, bool execute);
#endif #endif
...@@ -2290,7 +2290,7 @@ nvbios_exec(struct nvbios_init *init) ...@@ -2290,7 +2290,7 @@ nvbios_exec(struct nvbios_init *init)
} }
int int
nvbios_init(struct nvkm_subdev *subdev, bool execute) nvbios_post(struct nvkm_subdev *subdev, bool execute)
{ {
struct nvkm_bios *bios = subdev->device->bios; struct nvkm_bios *bios = subdev->device->bios;
int ret = 0; int ret = 0;
......
...@@ -393,7 +393,7 @@ nv04_devinit_pll_set(struct nvkm_devinit *devinit, u32 type, u32 freq) ...@@ -393,7 +393,7 @@ nv04_devinit_pll_set(struct nvkm_devinit *devinit, u32 type, u32 freq)
int int
nv04_devinit_post(struct nvkm_devinit *init, bool execute) nv04_devinit_post(struct nvkm_devinit *init, bool execute)
{ {
return nvbios_init(&init->subdev, execute); return nvbios_post(&init->subdev, execute);
} }
void void
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment