summaryrefslogtreecommitdiff
path: root/util/flashrom/sharplhf00l04.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
commit195237f2e1b42c144cb27fde0a6773b20c8cd01a (patch)
tree66bb1768241122933d135e5efeb84047443011da /util/flashrom/sharplhf00l04.h
parent1a9c892d58c746aef0cb530481c214e63a6a6871 (diff)
Coding style fixes (trivial).
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2577 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/flashrom/sharplhf00l04.h')
-rw-r--r--util/flashrom/sharplhf00l04.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/util/flashrom/sharplhf00l04.h b/util/flashrom/sharplhf00l04.h
index 3b8852a828..e2352a0a09 100644
--- a/util/flashrom/sharplhf00l04.h
+++ b/util/flashrom/sharplhf00l04.h
@@ -20,7 +20,8 @@ extern __inline__ void toggle_ready_lhf00l04(volatile uint8_t *dst)
}
}
-extern __inline__ void data_polling_lhf00l04(volatile uint8_t *dst, uint8_t data)
+extern __inline__ void data_polling_lhf00l04(volatile uint8_t *dst,
+ uint8_t data)
{
unsigned int i = 0;
uint8_t tmp;
@@ -37,9 +38,9 @@ extern __inline__ void data_polling_lhf00l04(volatile uint8_t *dst, uint8_t data
extern __inline__ void protect_lhf00l04(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);
}