mirror of
https://review.coreboot.org/flashrom.git
synced 2025-04-27 23:22:37 +02:00
internal: Fix warnings about unused constants
By adding more #if guards, fix warnings about unused constants that are enabled by default in newer GCC versions. Change-Id: Ib3b6d7c0c2fadc4faeab971673bfadb1a6d25919 Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/22669 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: David Hendricks <david.hendricks@gmail.com> Reviewed-by: Patrick Rudolph <siro@das-labor.org> (cherry picked from commit 97a90497a7d0df5076b4412c3e995a7e4a2ff8cc) Reviewed-on: https://review.coreboot.org/22800
This commit is contained in:
parent
fcbdc0a007
commit
60210dea9e
@ -131,6 +131,7 @@ int register_superio(struct superio s)
|
|||||||
int is_laptop = 0;
|
int is_laptop = 0;
|
||||||
int laptop_ok = 0;
|
int laptop_ok = 0;
|
||||||
|
|
||||||
|
#if IS_X86 || IS_MIPS
|
||||||
static void internal_chip_writeb(const struct flashctx *flash, uint8_t val,
|
static void internal_chip_writeb(const struct flashctx *flash, uint8_t val,
|
||||||
chipaddr addr);
|
chipaddr addr);
|
||||||
static void internal_chip_writew(const struct flashctx *flash, uint16_t val,
|
static void internal_chip_writew(const struct flashctx *flash, uint16_t val,
|
||||||
@ -155,6 +156,7 @@ static const struct par_master par_master_internal = {
|
|||||||
.chip_writel = internal_chip_writel,
|
.chip_writel = internal_chip_writel,
|
||||||
.chip_writen = fallback_chip_writen,
|
.chip_writen = fallback_chip_writen,
|
||||||
};
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
enum chipbustype internal_buses_supported = BUS_NONE;
|
enum chipbustype internal_buses_supported = BUS_NONE;
|
||||||
|
|
||||||
@ -358,6 +360,7 @@ int internal_init(void)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if IS_X86 || IS_MIPS
|
||||||
static void internal_chip_writeb(const struct flashctx *flash, uint8_t val,
|
static void internal_chip_writeb(const struct flashctx *flash, uint8_t val,
|
||||||
chipaddr addr)
|
chipaddr addr)
|
||||||
{
|
{
|
||||||
@ -400,3 +403,4 @@ static void internal_chip_readn(const struct flashctx *flash, uint8_t *buf,
|
|||||||
mmio_readn((void *)addr, buf, len);
|
mmio_readn((void *)addr, buf, len);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user