mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-06-26 16:41:42 +00:00
Merge branch 'master' of git://git.denx.de/u-boot-arm
Conflicts: arch/arm/cpu/armv7/config.mk board/ti/am43xx/mux.c include/configs/am43xx_evm.h Signed-off-by: Tom Rini <trini@ti.com>
This commit is contained in:
commit
eeb72e6761
121 changed files with 5959 additions and 607 deletions
|
@ -3331,6 +3331,11 @@ sub process {
|
|||
WARN("PREFER_PACKED",
|
||||
"__packed is preferred over __attribute__((packed))\n" . $herecurr);
|
||||
}
|
||||
# Check for new packed members, warn to use care
|
||||
if ($line =~ /\b(__attribute__\s*\(\s*\(.*\bpacked|__packed)\b/) {
|
||||
WARN("NEW_PACKED",
|
||||
"Adding new packed members is to be done with care\n" . $herecurr);
|
||||
}
|
||||
|
||||
# Check for __attribute__ aligned, prefer __aligned
|
||||
if ($line =~ /\b__attribute__\s*\(\s*\(.*aligned/) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue