diff options
| author | H. Peter Anvin <hpa@zytor.com> | 2009-05-29 15:10:27 -0700 |
|---|---|---|
| committer | H. Peter Anvin <hpa@zytor.com> | 2009-05-29 15:10:27 -0700 |
| commit | 46a4c99a783fce1ebefd7afd52c743131048234e (patch) | |
| tree | 98f94124156dfbbcebf57af1f45f5f451697e4d1 /com32/lib/syslinux | |
| parent | 0ac639579f37898e0f1e165bd8fcca8bc70b449e (diff) | |
| download | syslinux-46a4c99a783fce1ebefd7afd52c743131048234e.tar.gz | |
Run Nindent on com32/lib/syslinux/shuffle_pm.c
Automatically reformat com32/lib/syslinux/shuffle_pm.c using Nindent.
Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'com32/lib/syslinux')
| -rw-r--r-- | com32/lib/syslinux/shuffle_pm.c | 61 |
1 files changed, 30 insertions, 31 deletions
diff --git a/com32/lib/syslinux/shuffle_pm.c b/com32/lib/syslinux/shuffle_pm.c index cf250bb4..5e3183b7 100644 --- a/com32/lib/syslinux/shuffle_pm.c +++ b/com32/lib/syslinux/shuffle_pm.c @@ -38,41 +38,40 @@ int syslinux_shuffle_boot_pm(struct syslinux_movelist *fraglist, struct syslinux_memmap *memmap, - uint16_t bootflags, - struct syslinux_pm_regs *regs) + uint16_t bootflags, struct syslinux_pm_regs *regs) { - uint8_t handoff_code[9*5], *p; - const uint32_t *rp; - int i, rv; - struct syslinux_memmap *tmap; - addr_t regstub, stublen; + uint8_t handoff_code[9 * 5], *p; + const uint32_t *rp; + int i, rv; + struct syslinux_memmap *tmap; + addr_t regstub, stublen; - tmap = syslinux_target_memmap(fraglist, memmap); - if (!tmap) - return -1; + tmap = syslinux_target_memmap(fraglist, memmap); + if (!tmap) + return -1; - regstub = 0x800; /* Locate anywhere above this point */ - stublen = sizeof handoff_code; - rv = syslinux_memmap_find(tmap, SMT_FREE, ®stub, &stublen, 1); - syslinux_free_memmap(tmap); - if (rv) - return -1; + regstub = 0x800; /* Locate anywhere above this point */ + stublen = sizeof handoff_code; + rv = syslinux_memmap_find(tmap, SMT_FREE, ®stub, &stublen, 1); + syslinux_free_memmap(tmap); + if (rv) + return -1; - /* Build register-setting stub */ - p = handoff_code; - rp = (const uint32_t *)regs; - for (i = 0; i < 8; i++) { - *p = 0xb8 + i; /* MOV gpr,imm32 */ - *(uint32_t *)(p+1) = *rp++; - p += 5; - } - *p = 0xe9; /* JMP */ - *(uint32_t *)(p+1) = regs->eip - regstub - sizeof handoff_code; + /* Build register-setting stub */ + p = handoff_code; + rp = (const uint32_t *)regs; + for (i = 0; i < 8; i++) { + *p = 0xb8 + i; /* MOV gpr,imm32 */ + *(uint32_t *) (p + 1) = *rp++; + p += 5; + } + *p = 0xe9; /* JMP */ + *(uint32_t *) (p + 1) = regs->eip - regstub - sizeof handoff_code; - /* Add register-setting stub to shuffle list */ - if (syslinux_add_movelist(&fraglist, regstub, (addr_t)handoff_code, - sizeof handoff_code)) - return -1; + /* Add register-setting stub to shuffle list */ + if (syslinux_add_movelist(&fraglist, regstub, (addr_t) handoff_code, + sizeof handoff_code)) + return -1; - return syslinux_do_shuffle(fraglist, memmap, regstub, 1, bootflags); + return syslinux_do_shuffle(fraglist, memmap, regstub, 1, bootflags); } |
