summaryrefslogtreecommitdiffstats
path: root/arch/x86/boot/compressed/relocs.c
diff options
context:
space:
mode:
authorAlejandro Martinez Ruiz2007-10-17 14:38:58 +0200
committerThomas Gleixner2007-10-23 22:37:22 +0200
commit4d022adab4511892226f1eae00a44502bf685ae5 (patch)
tree23ae5685f3842ea238da8619c855ce80425f1415 /arch/x86/boot/compressed/relocs.c
parentx86: fix more TSC clock source calibration errors (diff)
downloadkernel-qcow2-linux-4d022adab4511892226f1eae00a44502bf685ae5.tar.gz
kernel-qcow2-linux-4d022adab4511892226f1eae00a44502bf685ae5.tar.xz
kernel-qcow2-linux-4d022adab4511892226f1eae00a44502bf685ae5.zip
x86: ARRAY_SIZE cleanup
Signed-off-by: Alejandro Martinez Ruiz <alex@flawedcode.org> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/boot/compressed/relocs.c')
-rw-r--r--arch/x86/boot/compressed/relocs.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/arch/x86/boot/compressed/relocs.c b/arch/x86/boot/compressed/relocs.c
index 2d77ee728f92..7a0d00b2cf28 100644
--- a/arch/x86/boot/compressed/relocs.c
+++ b/arch/x86/boot/compressed/relocs.c
@@ -38,11 +38,9 @@ static const char* safe_abs_relocs[] = {
static int is_safe_abs_reloc(const char* sym_name)
{
- int i, array_size;
-
- array_size = sizeof(safe_abs_relocs)/sizeof(char*);
+ int i;
- for(i = 0; i < array_size; i++) {
+ for(i = 0; i < ARRAY_SIZE(safe_abs_relocs); i++) {
if (!strcmp(sym_name, safe_abs_relocs[i]))
/* Match found */
return 1;