mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-01 06:01:16 +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:
@ -38,8 +38,8 @@
|
||||
#define STATUS_ESS (1 << 6)
|
||||
#define STATUS_WSMS (1 << 7)
|
||||
|
||||
static __inline__ int write_lockbits_49lfxxxc(chipaddr bios, int size,
|
||||
unsigned char bits)
|
||||
static int write_lockbits_49lfxxxc(chipaddr bios, int size,
|
||||
unsigned char bits)
|
||||
{
|
||||
int i, left = size;
|
||||
unsigned long address;
|
||||
@ -65,8 +65,7 @@ static __inline__ int write_lockbits_49lfxxxc(chipaddr bios, int size,
|
||||
return 0;
|
||||
}
|
||||
|
||||
static __inline__ int erase_sector_49lfxxxc(chipaddr bios,
|
||||
unsigned long address)
|
||||
static int erase_sector_49lfxxxc(chipaddr bios, unsigned long address)
|
||||
{
|
||||
unsigned char status;
|
||||
|
||||
@ -85,10 +84,8 @@ static __inline__ int erase_sector_49lfxxxc(chipaddr bios,
|
||||
return 0;
|
||||
}
|
||||
|
||||
static __inline__ int write_sector_49lfxxxc(chipaddr bios,
|
||||
uint8_t *src,
|
||||
chipaddr dst,
|
||||
unsigned int page_size)
|
||||
static int write_sector_49lfxxxc(chipaddr bios, uint8_t *src, chipaddr dst,
|
||||
unsigned int page_size)
|
||||
{
|
||||
int i;
|
||||
unsigned char status;
|
||||
|
Reference in New Issue
Block a user