[IA64] efi.c Add /* never reached */ annotation

As written, this loop could be for (;;) instead of do while (md). The tests
inside the loop always result in a return so the loop never terminates normally.

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 410ab512 965e7c8a

+2 -2
+2 -2
arch/ia64/kernel/efi.c
··· 762 762 if (!md || (md->attribute & ~EFI_MEMORY_RUNTIME) != attr) 763 763 return 0; 764 764 } while (md); 765 - return 0; 765 + return 0; /* never reached */ 766 766 } 767 767 768 768 u64 ··· 798 798 if (!md || md->attribute != attr) 799 799 return 0; 800 800 } while (md); 801 - return 0; 801 + return 0; /* never reached */ 802 802 } 803 803 EXPORT_SYMBOL(kern_mem_attribute); 804 804