Re: [PATCH v2 1/9] ARM: correct secondary_startup_arm mode

2015-05-16 Thread Russell King - ARM Linux
On Sat, May 16, 2015 at 11:08:36AM +0200, Matthias Brugger wrote: > 2015-05-16 9:58 GMT+02:00 Yingjoe Chen : > > secondary_startup_arm is used as ARM mode secondary start up function > > when ther kernel is compiled in THUMB mode, however the label itself > > is still in .thumb mode. readelf shows:

Re: [PATCH v2 1/9] ARM: correct secondary_startup_arm mode

2015-05-16 Thread Matthias Brugger
2015-05-16 9:58 GMT+02:00 Yingjoe Chen : > secondary_startup_arm is used as ARM mode secondary start up function > when ther kernel is compiled in THUMB mode, however the label itself > is still in .thumb mode. readelf shows: > > 160979: c020a581 120 FUNCGLOBAL DEFAULT2 secondary_startup_

[PATCH v2 1/9] ARM: correct secondary_startup_arm mode

2015-05-16 Thread Yingjoe Chen
secondary_startup_arm is used as ARM mode secondary start up function when ther kernel is compiled in THUMB mode, however the label itself is still in .thumb mode. readelf shows: 160979: c020a581 120 FUNCGLOBAL DEFAULT2 secondary_startup_arm Make sure the label is in ARM mode as well.