diff options
author | Lee Leahy <leroy.p.leahy@intel.com> | 2017-03-15 16:38:51 -0700 |
---|---|---|
committer | Lee Leahy <leroy.p.leahy@intel.com> | 2017-03-16 04:12:27 +0100 |
commit | c5917079eb81b10c58cd3e7bfe6b3925baaf9241 (patch) | |
tree | e07ef6796762e1289430fa146f311d26c951aa65 /src/cpu/x86/pae/pgtbl.c | |
parent | 8ca9a21a43ccc73b3f289affd2384805ec98eb81 (diff) |
cpu/x86: Wrap lines at 80 columns
Fix the following warning detected by checkpatch.pl:
WARNING: line over 80 characters
TEST=Build and run on Galileo Gen2
Change-Id: I56ea28826963403dc0719f40c13782c56dc97feb
Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com>
Reviewed-on: https://review.coreboot.org/18844
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/cpu/x86/pae/pgtbl.c')
-rw-r--r-- | src/cpu/x86/pae/pgtbl.c | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/src/cpu/x86/pae/pgtbl.c b/src/cpu/x86/pae/pgtbl.c index c2fa83d935..1ff9371b98 100644 --- a/src/cpu/x86/pae/pgtbl.c +++ b/src/cpu/x86/pae/pgtbl.c @@ -65,7 +65,8 @@ void *map_2M_page(unsigned long page) struct pde pdp[512]; } __attribute__ ((packed)); - static struct pg_table pgtbl[CONFIG_MAX_CPUS] __attribute__ ((aligned(4096))); + static struct pg_table pgtbl[CONFIG_MAX_CPUS] + __attribute__ ((aligned(4096))); static unsigned long mapped_window[CONFIG_MAX_CPUS]; unsigned long index; unsigned long window; @@ -79,7 +80,9 @@ void *map_2M_page(unsigned long page) paging_off(); if (window > 1) { struct pde *pd, *pdp; - /* Point the page directory pointers at the page directories */ + /* Point the page directory pointers at the page + * directories + */ memset(&pgtbl[index].pdp, 0, sizeof(pgtbl[index].pdp)); pd = pgtbl[index].pd; pdp = pgtbl[index].pdp; @@ -87,14 +90,18 @@ void *map_2M_page(unsigned long page) pdp[1].addr_lo = ((uint32_t)&pd[512*1])|1; pdp[2].addr_lo = ((uint32_t)&pd[512*2])|1; pdp[3].addr_lo = ((uint32_t)&pd[512*3])|1; - /* The first half of the page table is identity mapped */ + /* The first half of the page table is identity mapped + */ for (i = 0; i < 1024; i++) { pd[i].addr_lo = ((i & 0x3ff) << 21) | 0xE3; pd[i].addr_hi = 0; } - /* The second half of the page table holds the mapped page */ + /* The second half of the page table holds the mapped + * page + */ for (i = 1024; i < 2048; i++) { - pd[i].addr_lo = ((window & 1) << 31) | ((i & 0x3ff) << 21) | 0xE3; + pd[i].addr_lo = ((window & 1) << 31) + | ((i & 0x3ff) << 21) | 0xE3; pd[i].addr_hi = (window >> 1); } paging_on(pdp); |