1
0
Fork 0

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>
hifive-unleashed-5.1
Ben Skeggs 2015-08-20 14:54:06 +10:00
parent 5b0c189fcb
commit a00014e396
3 changed files with 5 additions and 5 deletions

View File

@ -3,7 +3,7 @@
#include <core/subdev.h>
struct nvkm_bios {
struct nvkm_subdev base;
struct nvkm_subdev subdev;
u32 size;
u8 *data;

View File

@ -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

View File

@ -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;