summaryrefslogtreecommitdiffstats
path: root/jedec.h
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2007-04-01 19:44:21 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2007-04-01 19:44:21 +0000
commit0b7afe65fb83bece914bb314e2c707d6d4b7ec4c (patch)
tree3dbee147f9d1e292cd914e216f77790c5a895345 /jedec.h
parent3ad2518939fb496df4544c7876cf412597bb3b03 (diff)
downloadast2050-flashrom-0b7afe65fb83bece914bb314e2c707d6d4b7ec4c.zip
ast2050-flashrom-0b7afe65fb83bece914bb314e2c707d6d4b7ec4c.tar.gz
Coding style fixes
Corresponding to flashrom svn r97 and coreboot v2 svn r2577. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
Diffstat (limited to 'jedec.h')
-rw-r--r--jedec.h21
1 files changed, 10 insertions, 11 deletions
diff --git a/jedec.h b/jedec.h
index 210f9f9..c5c5c64 100644
--- a/jedec.h
+++ b/jedec.h
@@ -9,8 +9,7 @@ extern int write_jedec(struct flashchip *flash, uint8_t *buf);
extern int erase_sector_jedec(volatile uint8_t *bios, unsigned int page);
extern int erase_block_jedec(volatile uint8_t *bios, unsigned int page);
extern int write_sector_jedec(volatile uint8_t *bios, uint8_t *src,
- volatile uint8_t *dst,
- unsigned int page_size);
+ volatile uint8_t *dst, unsigned int page_size);
extern __inline__ void toggle_ready_jedec(volatile uint8_t *dst)
{
@@ -45,21 +44,21 @@ extern __inline__ void data_polling_jedec(volatile uint8_t *dst, uint8_t data)
extern __inline__ void unprotect_jedec(volatile uint8_t *bios)
{
- *(volatile uint8_t *) (bios + 0x5555) = 0xAA;
- *(volatile uint8_t *) (bios + 0x2AAA) = 0x55;
- *(volatile uint8_t *) (bios + 0x5555) = 0x80;
- *(volatile uint8_t *) (bios + 0x5555) = 0xAA;
- *(volatile uint8_t *) (bios + 0x2AAA) = 0x55;
- *(volatile uint8_t *) (bios + 0x5555) = 0x20;
+ *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
+ *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
+ *(volatile uint8_t *)(bios + 0x5555) = 0x80;
+ *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
+ *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
+ *(volatile uint8_t *)(bios + 0x5555) = 0x20;
usleep(200);
}
extern __inline__ void protect_jedec(volatile uint8_t *bios)
{
- *(volatile uint8_t *) (bios + 0x5555) = 0xAA;
- *(volatile uint8_t *) (bios + 0x2AAA) = 0x55;
- *(volatile uint8_t *) (bios + 0x5555) = 0xA0;
+ *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
+ *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
+ *(volatile uint8_t *)(bios + 0x5555) = 0xA0;
usleep(200);
}
OpenPOWER on IntegriCloud