Skip to content

Commit

Permalink
[IA64] minor reformatting to vmlinux.lds.S
Browse files Browse the repository at this point in the history
Minor reformatting to vmlinux.lds.S to make it 80-column usable,
in accordance with Linux coding style.

Signed-off-by: Al Stone <ahs3@fc.hp.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
  • Loading branch information
Al Stone authored and Tony Luck committed Sep 26, 2006
1 parent ddb4f0d commit df8f0ec
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions arch/ia64/kernel/vmlinux.lds.S
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,9 @@ SECTIONS
*(.data.gate)
__stop_gate_section = .;
}
. = ALIGN(PAGE_SIZE); /* make sure the gate page doesn't expose kernel data */
. = ALIGN(PAGE_SIZE); /* make sure the gate page doesn't expose
* kernel data
*/

.data.read_mostly : AT(ADDR(.data.read_mostly) - LOAD_OFFSET)
{ *(.data.read_mostly) }
Expand All @@ -202,7 +204,9 @@ SECTIONS
*(.data.percpu)
__per_cpu_end = .;
}
. = __phys_per_cpu_start + PERCPU_PAGE_SIZE; /* ensure percpu data fits into percpu page size */
. = __phys_per_cpu_start + PERCPU_PAGE_SIZE; /* ensure percpu data fits
* into percpu page size
*/

data : { } :data
.data : AT(ADDR(.data) - LOAD_OFFSET)
Expand Down

0 comments on commit df8f0ec

Please sign in to comment.