[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>

authored by Aron Griffis and committed by Tony Luck 965e7c8a 7d9aed26

+8 -8
+8 -8
arch/ia64/kernel/efi.c
··· 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 315 * descriptor that has memory that is available for OS use. 316 316 */ 317 317 void ··· 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 325 * descriptor that has memory that is available for uncached allocator. 326 326 */ 327 327 void ··· 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 335 * ITR to enable safe PAL calls in virtual mode. See IA-64 Processor 336 336 * Abstraction Layer chapter 11 in ADAG 337 337 */ ··· 385 385 } 386 386 387 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 390 #if EFI_DEBUG 391 391 mask = ~((1 << IA64_GRANULE_SHIFT) - 1); ··· 435 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 439 * support... 440 440 */ 441 441 for (cp = boot_command_line; *cp; ) { ··· 465 465 * Verify the EFI Table 466 466 */ 467 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 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 471 if ((efi.systab->hdr.revision >> 16) == 0) 472 472 printk(KERN_WARNING "Warning: EFI system table version " 473 473 "%d.%02d, expected 1.00 or greater\n", ··· 1195 1195 if ((res = kzalloc(sizeof(struct resource), 1196 1196 GFP_KERNEL)) == NULL) { 1197 1197 printk(KERN_ERR 1198 - "failed to alocate resource for iomem\n"); 1198 + "failed to allocate resource for iomem\n"); 1199 1199 return; 1200 1200 } 1201 1201