Commit af42e970b6097a34cb2b93ec4c12c2a226b1d008

Authored by Max Filippov
Committed by Chris Zankel
1 parent 717460ee3e

modpost: fix modpost warnings for xtensa

Suppress warnings for two informational sections (.xt.lit and .xt.prop)
used by the Xtensa architecture.

Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Signed-off-by: Chris Zankel <chris@zankel.net>

Showing 1 changed file with 2 additions and 0 deletions Side-by-side Diff

scripts/mod/modpost.c
... ... @@ -827,6 +827,8 @@
827 827 ".note*",
828 828 ".got*",
829 829 ".toc*",
  830 + ".xt.prop", /* xtensa */
  831 + ".xt.lit", /* xtensa */
830 832 NULL
831 833 };
832 834