dect
/
linux-2.6
Archived
13
0
Fork 0

microblaze: KGDB little endian support

Just need to use little-endian opcode for brki r16, 0x18

Signed-off-by: Michal Simek <monstr@monstr.eu>
CC: Jason Wessel <jason.wessel@windriver.com>
This commit is contained in:
Michal Simek 2010-09-28 15:49:17 +10:00
parent 8e2ad016b2
commit e4f2909227
1 changed files with 4 additions and 0 deletions

View File

@ -142,5 +142,9 @@ void kgdb_arch_exit(void)
* Global data
*/
struct kgdb_arch arch_kgdb_ops = {
#ifdef __MICROBLAZEEL__
.gdb_bpt_instr = {0x18, 0x00, 0x0c, 0xba}, /* brki r16, 0x18 */
#else
.gdb_bpt_instr = {0xba, 0x0c, 0x00, 0x18}, /* brki r16, 0x18 */
#endif
};