While working on 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.

Signed-off-by: Christophe Leroy <christophe.le...@csgroup.eu>
---
 drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowrom.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowrom.c 
b/drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowrom.c
index ffa4b395220a..9c951e90e622 100644
--- a/drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowrom.c
+++ b/drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowrom.c
@@ -25,7 +25,7 @@
 #include <subdev/pci.h>
 
 static u32
-prom_read(void *data, u32 offset, u32 length, struct nvkm_bios *bios)
+nvbios_rom_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_rom_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_rom_init(struct nvkm_bios *bios, const char *name)
 {
        struct nvkm_device *device = bios->subdev.device;
        if (device->card_type == NV_40 && device->chipset >= 0x4c)
@@ -57,8 +57,8 @@ prom_init(struct nvkm_bios *bios, const char *name)
 const struct nvbios_source
 nvbios_rom = {
        .name = "PROM",
-       .init = prom_init,
-       .fini = prom_fini,
-       .read = prom_read,
+       .init = nvbios_rom_init,
+       .fini = nvbios_rom_fini,
+       .read = nvbios_rom_read,
        .rw = false,
 };
-- 
2.34.1

Reply via email to