summaryrefslogtreecommitdiffstats
path: root/sst28sf040.c
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2007-05-09 10:17:44 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2007-05-09 10:17:44 +0000
commita7e0548cea45ec60616936c536efbb2a34605093 (patch)
tree8d31e1c7e3343980b1c0724103f39dbb5baae77a /sst28sf040.c
parent7977f4ef2ea478a5460e6730aa2adc23e9685be1 (diff)
downloadast2050-flashrom-a7e0548cea45ec60616936c536efbb2a34605093.zip
ast2050-flashrom-a7e0548cea45ec60616936c536efbb2a34605093.tar.gz
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>
Diffstat (limited to 'sst28sf040.c')
-rw-r--r--sst28sf040.c36
1 files changed, 18 insertions, 18 deletions
diff --git a/sst28sf040.c b/sst28sf040.c
index 3de991d..7b3db15 100644
--- a/sst28sf040.c
+++ b/sst28sf040.c
@@ -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);
OpenPOWER on IntegriCloud