diff options
author | Aron Griffis <aron@hp.com> | 2008-01-08 22:29:37 -0500 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2008-02-04 18:34:17 -0500 |
commit | 965e7c8affeca27f7e5de75c97954e74d3b8052d (patch) | |
tree | 1ba86751a0f1d24751931c549dbf2970c27c5655 /arch | |
parent | 7d9aed26ed11d7a472104b7078b0c5e4fd416059 (diff) |
[IA64] efi.c Spelling/punctuation fixes
Incorporates the suggestions from Peter Chubb the last time I submitted
this. This called for using the same verb tense in the couple of preceding
comments as well.
Signed-off-by: Aron Griffis <aron@hp.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/ia64/kernel/efi.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/arch/ia64/kernel/efi.c b/arch/ia64/kernel/efi.c index 9e5910920da6..269f4f4adfed 100644 --- a/arch/ia64/kernel/efi.c +++ b/arch/ia64/kernel/efi.c | |||
@@ -311,7 +311,7 @@ walk (efi_freemem_callback_t callback, void *arg, u64 attr) | |||
311 | } | 311 | } |
312 | 312 | ||
313 | /* | 313 | /* |
314 | * Walks the EFI memory map and calls CALLBACK once for each EFI memory | 314 | * Walk the EFI memory map and call CALLBACK once for each EFI memory |
315 | * descriptor that has memory that is available for OS use. | 315 | * descriptor that has memory that is available for OS use. |
316 | */ | 316 | */ |
317 | void | 317 | void |
@@ -321,7 +321,7 @@ efi_memmap_walk (efi_freemem_callback_t callback, void *arg) | |||
321 | } | 321 | } |
322 | 322 | ||
323 | /* | 323 | /* |
324 | * Walks the EFI memory map and calls CALLBACK once for each EFI memory | 324 | * Walk the EFI memory map and call CALLBACK once for each EFI memory |
325 | * descriptor that has memory that is available for uncached allocator. | 325 | * descriptor that has memory that is available for uncached allocator. |
326 | */ | 326 | */ |
327 | void | 327 | void |
@@ -331,7 +331,7 @@ efi_memmap_walk_uc (efi_freemem_callback_t callback, void *arg) | |||
331 | } | 331 | } |
332 | 332 | ||
333 | /* | 333 | /* |
334 | * Look for the PAL_CODE region reported by EFI and maps it using an | 334 | * Look for the PAL_CODE region reported by EFI and map it using an |
335 | * ITR to enable safe PAL calls in virtual mode. See IA-64 Processor | 335 | * ITR to enable safe PAL calls in virtual mode. See IA-64 Processor |
336 | * Abstraction Layer chapter 11 in ADAG | 336 | * Abstraction Layer chapter 11 in ADAG |
337 | */ | 337 | */ |
@@ -385,7 +385,7 @@ efi_get_pal_addr (void) | |||
385 | } | 385 | } |
386 | 386 | ||
387 | if (efi_md_size(md) > IA64_GRANULE_SIZE) | 387 | if (efi_md_size(md) > IA64_GRANULE_SIZE) |
388 | panic("Woah! PAL code size bigger than a granule!"); | 388 | panic("Whoa! PAL code size bigger than a granule!"); |
389 | 389 | ||
390 | #if EFI_DEBUG | 390 | #if EFI_DEBUG |
391 | mask = ~((1 << IA64_GRANULE_SHIFT) - 1); | 391 | mask = ~((1 << IA64_GRANULE_SHIFT) - 1); |
@@ -435,7 +435,7 @@ efi_init (void) | |||
435 | int i; | 435 | int i; |
436 | 436 | ||
437 | /* | 437 | /* |
438 | * it's too early to be able to use the standard kernel command line | 438 | * It's too early to be able to use the standard kernel command line |
439 | * support... | 439 | * support... |
440 | */ | 440 | */ |
441 | for (cp = boot_command_line; *cp; ) { | 441 | for (cp = boot_command_line; *cp; ) { |
@@ -465,9 +465,9 @@ efi_init (void) | |||
465 | * Verify the EFI Table | 465 | * Verify the EFI Table |
466 | */ | 466 | */ |
467 | if (efi.systab == NULL) | 467 | if (efi.systab == NULL) |
468 | panic("Woah! Can't find EFI system table.\n"); | 468 | panic("Whoa! Can't find EFI system table.\n"); |
469 | if (efi.systab->hdr.signature != EFI_SYSTEM_TABLE_SIGNATURE) | 469 | if (efi.systab->hdr.signature != EFI_SYSTEM_TABLE_SIGNATURE) |
470 | panic("Woah! EFI system table signature incorrect\n"); | 470 | panic("Whoa! EFI system table signature incorrect\n"); |
471 | if ((efi.systab->hdr.revision >> 16) == 0) | 471 | if ((efi.systab->hdr.revision >> 16) == 0) |
472 | printk(KERN_WARNING "Warning: EFI system table version " | 472 | printk(KERN_WARNING "Warning: EFI system table version " |
473 | "%d.%02d, expected 1.00 or greater\n", | 473 | "%d.%02d, expected 1.00 or greater\n", |
@@ -1195,7 +1195,7 @@ efi_initialize_iomem_resources(struct resource *code_resource, | |||
1195 | if ((res = kzalloc(sizeof(struct resource), | 1195 | if ((res = kzalloc(sizeof(struct resource), |
1196 | GFP_KERNEL)) == NULL) { | 1196 | GFP_KERNEL)) == NULL) { |
1197 | printk(KERN_ERR | 1197 | printk(KERN_ERR |
1198 | "failed to alocate resource for iomem\n"); | 1198 | "failed to allocate resource for iomem\n"); |
1199 | return; | 1199 | return; |
1200 | } | 1200 | } |
1201 | 1201 | ||