checkpatch: remove __packed and __aligned checks

These checks are specific to linux kernel.

Change-Id: Ia9b837b5609922a897822f1d55f96f04c0f1f838
Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk>
Reviewed-on: http://openocd.zylin.com/424
Tested-by: jenkins
This commit is contained in:
Spencer Oliver 2012-02-02 11:16:39 +00:00
parent 38f8e5eefa
commit 2af5b97ba3
1 changed files with 8 additions and 8 deletions

View File

@ -3064,16 +3064,16 @@ sub process {
}
# Check for __attribute__ packed, prefer __packed
if ($line =~ /\b__attribute__\s*\(\s*\(.*\bpacked\b/) {
WARN("PREFER_PACKED",
"__packed is preferred over __attribute__((packed))\n" . $herecurr);
}
# if ($line =~ /\b__attribute__\s*\(\s*\(.*\bpacked\b/) {
# WARN("PREFER_PACKED",
# "__packed is preferred over __attribute__((packed))\n" . $herecurr);
# }
# Check for __attribute__ aligned, prefer __aligned
if ($line =~ /\b__attribute__\s*\(\s*\(.*aligned/) {
WARN("PREFER_ALIGNED",
"__aligned(size) is preferred over __attribute__((aligned(size)))\n" . $herecurr);
}
# if ($line =~ /\b__attribute__\s*\(\s*\(.*aligned/) {
# WARN("PREFER_ALIGNED",
# "__aligned(size) is preferred over __attribute__((aligned(size)))\n" . $herecurr);
# }
# check for sizeof(&)
if ($line =~ /\bsizeof\s*\(\s*\&/) {