diff options
| author | Sridhar Parasuram <sridhar@codeaurora.org> | 2012-06-11 10:22:19 -0700 |
|---|---|---|
| committer | Stephen Boyd <sboyd@codeaurora.org> | 2013-09-04 14:17:44 -0700 |
| commit | a3f3de956b76df5a982c0c63183ae3813d330261 (patch) | |
| tree | e8a1748ef2f25e4fe2e6a8e13fa99436c14ae52a /scripts/gcc-wrapper.py | |
| parent | 944a56ea241bdeb6e4e3bb23fac2c1b140087f8d (diff) | |
scripts: gcc-wrapper: Add an allowed warning for alignment.c
| kernel/arch/arm/mm/alignment.c:327:15: warning: 'offset.un' may be used
uninitialized in this function [-Wuninitialized]
| error, forbidden warning: alignment.c:327
| make[2]: *** [arch/arm/mm/alignment.o] Error 1
Change-Id: Iadba4720a38997682036527a89b5adeb52ea6119
Signed-off-by: Sridhar Parasuram <sridhar@codeaurora.org>
(cherry picked from commit 32cd2e999c18bf7fa2c5722c90c9bdf6dea60aba)
Conflicts:
scripts/gcc-wrapper.py
Diffstat (limited to 'scripts/gcc-wrapper.py')
| -rwxr-xr-x | scripts/gcc-wrapper.py | 52 |
1 files changed, 2 insertions, 50 deletions
diff --git a/scripts/gcc-wrapper.py b/scripts/gcc-wrapper.py index 2b8b093e6d7..27e76a74f9d 100755 --- a/scripts/gcc-wrapper.py +++ b/scripts/gcc-wrapper.py @@ -40,57 +40,9 @@ import subprocess # force LANG to be set to en_US.UTF-8 to get consistent warnings. allowed_warnings = set([ - "alignment.c:298", - "alignment.c:720", - "async.c:122", - "async.c:270", - "block.c:835", - "block.c:836", - "dir.c:43", - "dm.c:1053", - "dm.c:1080", - "dm-table.c:1120", - "dm-table.c:1126", - "drm_edid.c:1303", - "eventpoll.c:1143", - "f_mass_storage.c:3368", - "inode.c:72", - "inode.c:73", - "inode.c:74", - "msm_sdcc.c:126", - "msm_sdcc.c:128", - "nf_conntrack_core.c:1579", - "nf_conntrack_core.c:1580", - "nf_conntrack_netlink.c:790", - "nf_conntrack_proto.c:210", - "nf_conntrack_proto.c:345", - "nf_conntrack_proto.c:370", - "nf_nat_core.c:528", - "nf_nat_core.c:739", - "nf_nat_core.c:740", - "nf_nat_core.c:741", - "nf_nat_core.c:742", - "nf_nat_core.c:751", - "nf_nat_core.c:753", - "nf_nat_core.c:756", - "nf_nat_ftp.c:123", - "nf_nat_pptp.c:285", - "nf_nat_pptp.c:288", - "nf_nat_pptp.c:291", - "nf_nat_pptp.c:294", - "nf_nat_sip.c:550", - "nf_nat_sip.c:551", - "nf_nat_sip.c:552", - "nf_nat_sip.c:553", - "nf_nat_sip.c:555", - "nf_nat_sip.c:556", - "nf_nat_sip.c:554", - "nf_nat_standalone.c:118", - "nf_nat_tftp.c:46", + "alignment.c:327", + "mmu.c:602", "return_address.c:62", - "sch_generic.c:678", - "soc-core.c:1719", - "xt_log.h:50", ]) # Capture the name of the object file, can find it. |
