mirror of
https://review.coreboot.org/flashrom.git
synced 2025-06-30 21:52:36 +02:00
Eliminate all 'inline's from the flashrom code
They serve pretty much no purpose, compilers can optimize pretty much all of what we might mark as inline anyway, _and_ inlines are not enforced in any way by the compiler either. They're totally unneeded. Kill them. Corresponding to flashrom svn r522. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
This commit is contained in:
13
sst28sf040.c
13
sst28sf040.c
@ -28,7 +28,7 @@
|
||||
#define RESET 0xFF
|
||||
#define READ_ID 0x90
|
||||
|
||||
static __inline__ void protect_28sf040(chipaddr bios)
|
||||
static void protect_28sf040(chipaddr bios)
|
||||
{
|
||||
uint8_t tmp;
|
||||
|
||||
@ -41,7 +41,7 @@ static __inline__ void protect_28sf040(chipaddr bios)
|
||||
tmp = chip_readb(bios + 0x040A);
|
||||
}
|
||||
|
||||
static __inline__ void unprotect_28sf040(chipaddr bios)
|
||||
static void unprotect_28sf040(chipaddr bios)
|
||||
{
|
||||
uint8_t tmp;
|
||||
|
||||
@ -54,8 +54,7 @@ static __inline__ void unprotect_28sf040(chipaddr bios)
|
||||
tmp = chip_readb(bios + 0x041A);
|
||||
}
|
||||
|
||||
static __inline__ int erase_sector_28sf040(chipaddr bios,
|
||||
unsigned long address)
|
||||
static int erase_sector_28sf040(chipaddr bios, unsigned long address)
|
||||
{
|
||||
chip_writeb(AUTO_PG_ERASE1, bios);
|
||||
chip_writeb(AUTO_PG_ERASE2, bios + address);
|
||||
@ -66,10 +65,8 @@ static __inline__ int erase_sector_28sf040(chipaddr bios,
|
||||
return 0;
|
||||
}
|
||||
|
||||
static __inline__ int write_sector_28sf040(chipaddr bios,
|
||||
uint8_t *src,
|
||||
chipaddr dst,
|
||||
unsigned int page_size)
|
||||
static int write_sector_28sf040(chipaddr bios, uint8_t *src, chipaddr dst,
|
||||
unsigned int page_size)
|
||||
{
|
||||
int i;
|
||||
|
||||
|
Reference in New Issue
Block a user