drm/nouveau/bios: Rename prom_init() and friends functions
authorChristophe Leroy <christophe.leroy@csgroup.eu>
Sat, 19 Mar 2022 10:27:51 +0000 (11:27 +0100)
committerLyude Paul <lyude@redhat.com>
Wed, 8 Jun 2022 20:50:40 +0000 (16:50 -0400)
While working at fixing powerpc headers, I ended up with the
following error.

drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowrom.c:48:1: error: conflicting types for 'prom_init'; have 'void *(struct nvkm_bios *, const char *)'
make[5]: *** [scripts/Makefile.build:288: drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowrom.o] Error 1

powerpc and a few other architectures have a prom_init() global function.
One day or another it will conflict with the one in shadowrom.c

Those being static, they can easily be renamed. Do it.

While at it, also rename the ops structure as 'nvbios_prom' instead of
'nvbios_rom' in order to make it clear that it refers to the
NV_PROM device.

Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu>
Reviewed-by: Lyude Paul <lyude@redhat.com>
Signed-off-by: Lyude Paul <lyude@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/7e0612b61511ec8030e3b2dcbfaa7751781c8b91.1647684507.git.christophe.leroy@csgroup.eu
drivers/gpu/drm/nouveau/nvkm/subdev/bios/priv.h
drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadow.c
drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowrom.c

index fac1bff1311be89bb67160d71af4407f23160035..cfa8a0c356dd869b8191f38f15ccd2bb78954961 100644 (file)
@@ -19,7 +19,7 @@ struct nvbios_source {
 int nvbios_extend(struct nvkm_bios *, u32 length);
 int nvbios_shadow(struct nvkm_bios *);
 
-extern const struct nvbios_source nvbios_rom;
+extern const struct nvbios_source nvbios_prom;
 extern const struct nvbios_source nvbios_ramin;
 extern const struct nvbios_source nvbios_acpi_fast;
 extern const struct nvbios_source nvbios_acpi_slow;
index 4b571cc6bc70f4cacb934cd731aed683ca8ec0f0..19188683c8fca90a7656b53ab15a8ee58d8575e0 100644 (file)
@@ -171,7 +171,7 @@ nvbios_shadow(struct nvkm_bios *bios)
        struct shadow mthds[] = {
                { 0, &nvbios_of },
                { 0, &nvbios_ramin },
-               { 0, &nvbios_rom },
+               { 0, &nvbios_prom },
                { 0, &nvbios_acpi_fast },
                { 4, &nvbios_acpi_slow },
                { 1, &nvbios_pcirom },
index ffa4b395220aaa6ab61bdb67b10d62985e7527f7..39144ceb117b4b42116c420635f29da3960bdee7 100644 (file)
@@ -25,7 +25,7 @@
 #include <subdev/pci.h>
 
 static u32
-prom_read(void *data, u32 offset, u32 length, struct nvkm_bios *bios)
+nvbios_prom_read(void *data, u32 offset, u32 length, struct nvkm_bios *bios)
 {
        struct nvkm_device *device = data;
        u32 i;
@@ -38,14 +38,14 @@ prom_read(void *data, u32 offset, u32 length, struct nvkm_bios *bios)
 }
 
 static void
-prom_fini(void *data)
+nvbios_prom_fini(void *data)
 {
        struct nvkm_device *device = data;
        nvkm_pci_rom_shadow(device->pci, true);
 }
 
 static void *
-prom_init(struct nvkm_bios *bios, const char *name)
+nvbios_prom_init(struct nvkm_bios *bios, const char *name)
 {
        struct nvkm_device *device = bios->subdev.device;
        if (device->card_type == NV_40 && device->chipset >= 0x4c)
@@ -55,10 +55,10 @@ prom_init(struct nvkm_bios *bios, const char *name)
 }
 
 const struct nvbios_source
-nvbios_rom = {
+nvbios_prom = {
        .name = "PROM",
-       .init = prom_init,
-       .fini = prom_fini,
-       .read = prom_read,
+       .init = nvbios_prom_init,
+       .fini = nvbios_prom_fini,
+       .read = nvbios_prom_read,
        .rw = false,
 };