diff options
| author | Sridhar Parasuram <sridhar@codeaurora.org> | 2012-06-11 10:22:19 -0700 |
|---|---|---|
| committer | Stephen Boyd <sboyd@codeaurora.org> | 2013-02-20 02:49:38 -0800 |
| commit | 9de992efc8b592b3a7bfebf18e3640c47a1b2b38 (patch) | |
| tree | a289da59fc434628aa3c52494d717c6fbe79a792 /scripts/gcc-wrapper.py | |
| parent | b4ada1fe5a050e7cb7e753b632f885cc592cca56 (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 ad384bafa08..583a5cef99e 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:885", - "block.c:886", - "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. |
