mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-04 03:33:58 +08:00
drm/nouveau/bios: cosmetic changes
This is purely preparation for upcoming commits, there should be no code changes here. Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
This commit is contained in:
parent
5b0c189fcb
commit
a00014e396
@ -3,7 +3,7 @@
|
||||
#include <core/subdev.h>
|
||||
|
||||
struct nvkm_bios {
|
||||
struct nvkm_subdev base;
|
||||
struct nvkm_subdev subdev;
|
||||
u32 size;
|
||||
u8 *data;
|
||||
|
||||
|
@ -171,21 +171,21 @@ nvkm_bios_dtor(struct nvkm_object *object)
|
||||
{
|
||||
struct nvkm_bios *bios = (void *)object;
|
||||
kfree(bios->data);
|
||||
nvkm_subdev_destroy(&bios->base);
|
||||
nvkm_subdev_destroy(&bios->subdev);
|
||||
}
|
||||
|
||||
static int
|
||||
nvkm_bios_init(struct nvkm_object *object)
|
||||
{
|
||||
struct nvkm_bios *bios = (void *)object;
|
||||
return nvkm_subdev_init(&bios->base);
|
||||
return nvkm_subdev_init(&bios->subdev);
|
||||
}
|
||||
|
||||
static int
|
||||
nvkm_bios_fini(struct nvkm_object *object, bool suspend)
|
||||
{
|
||||
struct nvkm_bios *bios = (void *)object;
|
||||
return nvkm_subdev_fini(&bios->base, suspend);
|
||||
return nvkm_subdev_fini(&bios->subdev, suspend);
|
||||
}
|
||||
|
||||
struct nvkm_oclass
|
||||
|
@ -206,7 +206,7 @@ nvbios_shadow(struct nvkm_bios *bios)
|
||||
{ shadow_class, 1, &nvbios_pcirom },
|
||||
{ shadow_class, 1, &nvbios_platform },
|
||||
{ shadow_class }
|
||||
}, *mthd = mthds, *best = NULL;
|
||||
}, *mthd, *best = NULL;
|
||||
const char *optarg;
|
||||
char *source;
|
||||
int optlen;
|
||||
|
Loading…
Reference in New Issue
Block a user