SPDX: Convert a few files that were missed beforeAs part of the main conversion a few files were missed. These files hadadditional whitespace after the '*' and before the SPDX tag and myprevious
SPDX: Convert a few files that were missed beforeAs part of the main conversion a few files were missed. These files hadadditional whitespace after the '*' and before the SPDX tag and myprevious regex was too strict. This time I did a grep for all SPDX tagsand then filtered out anything that matched the correct styles.Fixes: 83d290c56fab ("SPDX: Convert all of our single license tags to Linux Kernel style")Reported-by: Heinrich Schuchardt <xypron.debian@gmx.de>Signed-off-by: Tom Rini <trini@konsulko.com>
show more ...
arm: support Thumb-1 with CONFIG_SYS_THUMB_BUILDWhen building a Thumb-1-only target with CONFIG_SYS_THUMB_BUILD,some files fail to build, most of the time because they includemcr instructions, wh
arm: support Thumb-1 with CONFIG_SYS_THUMB_BUILDWhen building a Thumb-1-only target with CONFIG_SYS_THUMB_BUILD,some files fail to build, most of the time because they includemcr instructions, which only exist for Thumb-2.This patch introduces a Kconfig option CONFIG_THUMB2 and usesit to select between Thumb-2 and ARM mode for the aforementionedfiles.Signed-off-by: Albert ARIBAUD <albert.u.boot@aribaud.net>