1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-08-15 19:40:19 +02:00

Fix coding style of flashrom by running indent on all files

indent -npro -kr -i8 -ts8 -sob -l80 -ss -ncs *.[ch]

Some minor fixups were required, and maybe a few more cosmetic
changes are needed.

Corresponding to flashrom svn r108 and coreboot v2 svn r2643.

Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
This commit is contained in:
Uwe Hermann
2007-05-09 10:17:44 +00:00
parent 7977f4ef2e
commit a7e0548cea
15 changed files with 709 additions and 775 deletions

View File

@@ -43,13 +43,13 @@ static __inline__ void protect_28sf040(volatile uint8_t *bios)
/* ask compiler not to optimize this */
volatile uint8_t tmp;
tmp = *(volatile uint8_t *) (bios + 0x1823);
tmp = *(volatile uint8_t *) (bios + 0x1820);
tmp = *(volatile uint8_t *) (bios + 0x1822);
tmp = *(volatile uint8_t *) (bios + 0x0418);
tmp = *(volatile uint8_t *) (bios + 0x041B);
tmp = *(volatile uint8_t *) (bios + 0x0419);
tmp = *(volatile uint8_t *) (bios + 0x040A);
tmp = *(volatile uint8_t *)(bios + 0x1823);
tmp = *(volatile uint8_t *)(bios + 0x1820);
tmp = *(volatile uint8_t *)(bios + 0x1822);
tmp = *(volatile uint8_t *)(bios + 0x0418);
tmp = *(volatile uint8_t *)(bios + 0x041B);
tmp = *(volatile uint8_t *)(bios + 0x0419);
tmp = *(volatile uint8_t *)(bios + 0x040A);
}
static __inline__ void unprotect_28sf040(volatile uint8_t *bios)
@@ -57,13 +57,13 @@ static __inline__ void unprotect_28sf040(volatile uint8_t *bios)
/* ask compiler not to optimize this */
volatile uint8_t tmp;
tmp = *(volatile uint8_t *) (bios + 0x1823);
tmp = *(volatile uint8_t *) (bios + 0x1820);
tmp = *(volatile uint8_t *) (bios + 0x1822);
tmp = *(volatile uint8_t *) (bios + 0x0418);
tmp = *(volatile uint8_t *) (bios + 0x041B);
tmp = *(volatile uint8_t *) (bios + 0x0419);
tmp = *(volatile uint8_t *) (bios + 0x041A);
tmp = *(volatile uint8_t *)(bios + 0x1823);
tmp = *(volatile uint8_t *)(bios + 0x1820);
tmp = *(volatile uint8_t *)(bios + 0x1822);
tmp = *(volatile uint8_t *)(bios + 0x0418);
tmp = *(volatile uint8_t *)(bios + 0x041B);
tmp = *(volatile uint8_t *)(bios + 0x0419);
tmp = *(volatile uint8_t *)(bios + 0x041A);
}
static __inline__ int erase_sector_28sf040(volatile uint8_t *bios,
@@ -116,9 +116,9 @@ int probe_28sf040(struct flashchip *flash)
*bios = READ_ID;
myusec_delay(10);
id1 = *(volatile uint8_t *) bios;
id1 = *(volatile uint8_t *)bios;
myusec_delay(10);
id2 = *(volatile uint8_t *) (bios + 0x01);
id2 = *(volatile uint8_t *)(bios + 0x01);
*bios = RESET;
myusec_delay(10);
@@ -150,8 +150,8 @@ int erase_28sf040(struct flashchip *flash)
int write_28sf040(struct flashchip *flash, uint8_t *buf)
{
int i;
int total_size = flash->total_size * 1024, page_size =
flash->page_size;
int total_size = flash->total_size * 1024;
int page_size = flash->page_size;
volatile uint8_t *bios = flash->virt_addr;
unprotect_28sf040(bios);