Re: [U-Boot] [PATCH 1/1] ARM: correct detection of thumbs mode

2019-06-23 Thread Marek Vasut
On 6/23/19 8:31 AM, Heinrich Schuchardt wrote: > When a crash occurs in thumbs It's Thumb , not Thumbs. You should take CONFIG_ARM_THUMB off the config whitelist too. > mode the crash dump is incorrect. This is due > to the usage of a non-existing configuration variable CONFIG_ARM_THUMB in > the

[U-Boot] [PATCH 1/1] ARM: correct detection of thumbs mode

2019-06-22 Thread Heinrich Schuchardt
When a crash occurs in thumbs mode the crash dump is incorrect. This is due to the usage of a non-existing configuration variable CONFIG_ARM_THUMB in the definition of macro thumb_mode(regs). Use CONFIG_IS_ENABLED(SYS_THUMB_BUILD) to detect that the code has been compiled for thumbs mode. With th