aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/kallsyms.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/kallsyms.c b/scripts/kallsyms.c
index a9186a98a37d..085b6a584fe0 100644
--- a/scripts/kallsyms.c
+++ b/scripts/kallsyms.c
@@ -405,7 +405,7 @@ static void write_src(void)
405 } 405 }
406 406
407 output_label("kallsyms_num_syms"); 407 output_label("kallsyms_num_syms");
408 printf("\tPTR\t%u\n", table_cnt); 408 printf("\t.long\t%u\n", table_cnt);
409 printf("\n"); 409 printf("\n");
410 410
411 /* table of offset markers, that give the offset in the compressed stream 411 /* table of offset markers, that give the offset in the compressed stream
@@ -434,7 +434,7 @@ static void write_src(void)
434 434
435 output_label("kallsyms_markers"); 435 output_label("kallsyms_markers");
436 for (i = 0; i < ((table_cnt + 255) >> 8); i++) 436 for (i = 0; i < ((table_cnt + 255) >> 8); i++)
437 printf("\tPTR\t%d\n", markers[i]); 437 printf("\t.long\t%u\n", markers[i]);
438 printf("\n"); 438 printf("\n");
439 439
440 free(markers); 440 free(markers);