public inbox for linux-ia64@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] long line & codingstyle cleanups for contig.c
@ 2005-01-07  0:06 Jesse Barnes
  0 siblings, 0 replies; only message in thread
From: Jesse Barnes @ 2005-01-07  0:06 UTC (permalink / raw)
  To: linux-ia64

[-- Attachment #1: Type: text/plain, Size: 236 bytes --]

This small patch cleans up long lines in contig.c and makes the function 
declarations adhere to Documentation/CodingStyle.  Whitespace only changes.

Signed-off-by: Jesse Barnes <jbarnes@sgi.com>

Thanks,
Jesse & the 80 column brigade

[-- Attachment #2: contig-cleanup.patch --]
[-- Type: text/plain, Size: 2877 bytes --]

===== arch/ia64/mm/contig.c 1.10 vs edited =====
--- 1.10/arch/ia64/mm/contig.c	2004-12-28 13:38:55 -08:00
+++ edited/arch/ia64/mm/contig.c	2005-01-06 15:51:33 -08:00
@@ -34,8 +34,7 @@
  *
  * Just walks the pages in the system and describes where they're allocated.
  */
-void
-show_mem (void)
+void show_mem(void)
 {
 	int i, total = 0, reserved = 0;
 	int shared = 0, cached = 0;
@@ -75,8 +74,7 @@
  * Passed as a callback function to efi_memmap_walk() to determine the highest
  * available page frame number in the system.
  */
-int
-find_max_pfn (unsigned long start, unsigned long end, void *arg)
+int find_max_pfn(unsigned long start, unsigned long end, void *arg)
 {
 	unsigned long *max_pfnp = arg, pfn;
 
@@ -95,8 +93,7 @@
  * Find a place to put the bootmap and return its starting address in
  * bootmap_start.  This address must be page-aligned.
  */
-int
-find_bootmap_location (unsigned long start, unsigned long end, void *arg)
+int find_bootmap_location(unsigned long start, unsigned long end, void *arg)
 {
 	unsigned long needed = *(unsigned long *)arg;
 	unsigned long range_start, range_end, free_start;
@@ -139,8 +136,7 @@
  * Walk the EFI memory map and find usable memory for the system, taking
  * into account reserved areas.
  */
-void
-find_memory (void)
+void find_memory(void)
 {
 	unsigned long bootmap_size;
 
@@ -174,8 +170,7 @@
  *
  * Allocate and setup per-cpu data areas.
  */
-void *
-per_cpu_init (void)
+void *per_cpu_init(void)
 {
 	void *cpu_data;
 	int cpu;
@@ -187,20 +182,23 @@
 	 */
 	if (smp_processor_id() == 0) {
 		cpu_data = __alloc_bootmem(PERCPU_PAGE_SIZE * NR_CPUS,
-					   PERCPU_PAGE_SIZE, __pa(MAX_DMA_ADDRESS));
+					   PERCPU_PAGE_SIZE,
+					   __pa(MAX_DMA_ADDRESS));
 		for (cpu = 0; cpu < NR_CPUS; cpu++) {
-			memcpy(cpu_data, __phys_per_cpu_start, __per_cpu_end - __per_cpu_start);
-			__per_cpu_offset[cpu] = (char *) cpu_data - __per_cpu_start;
+			memcpy(cpu_data, __phys_per_cpu_start,
+			       __per_cpu_end - __per_cpu_start);
+			__per_cpu_offset[cpu] = (char *) cpu_data -
+				__per_cpu_start;
 			cpu_data += PERCPU_PAGE_SIZE;
-			per_cpu(local_per_cpu_offset, cpu) = __per_cpu_offset[cpu];
+			per_cpu(local_per_cpu_offset, cpu) =
+				__per_cpu_offset[cpu];
 		}
 	}
 	return __per_cpu_start + __per_cpu_offset[smp_processor_id()];
 }
 #endif /* CONFIG_SMP */
 
-static int
-count_pages (u64 start, u64 end, void *arg)
+static int count_pages(u64 start, u64 end, void *arg)
 {
 	unsigned long *count = arg;
 
@@ -209,8 +207,7 @@
 }
 
 #ifdef CONFIG_VIRTUAL_MEM_MAP
-static int
-count_dma_pages (u64 start, u64 end, void *arg)
+static int count_dma_pages(u64 start, u64 end, void *arg)
 {
 	unsigned long *count = arg;
 
@@ -224,8 +221,7 @@
  * Set up the page tables.
  */
 
-void
-paging_init (void)
+void paging_init(void)
 {
 	unsigned long max_dma;
 	unsigned long zones_size[MAX_NR_ZONES];

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2005-01-07  0:06 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-01-07  0:06 [PATCH] long line & codingstyle cleanups for contig.c Jesse Barnes

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox