Skip to content
Snippets Groups Projects
Commit 8d10b757 authored by oharboe's avatar oharboe
Browse files

slightly increase readability of code

git-svn-id: svn://svn.berlios.de/openocd/trunk@1631 b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent cb97efc4
Branches
No related tags found
No related merge requests found
...@@ -265,28 +265,29 @@ int arm7tdmi_clock_data_in_endianness(arm_jtag_t *jtag_info, void *in, int size, ...@@ -265,28 +265,29 @@ int arm7tdmi_clock_data_in_endianness(arm_jtag_t *jtag_info, void *in, int size,
jtag_add_dr_scan_now(2, fields, TAP_INVALID); jtag_add_dr_scan_now(2, fields, TAP_INVALID);
u32 readback=flip_u32(le_to_h_u32(tmp), 32);
switch (size) switch (size)
{ {
case 4: case 4:
if (be) if (be)
{ {
h_u32_to_be(((u8*)in), flip_u32(le_to_h_u32(tmp), 32)); h_u32_to_be(((u8*)in), readback);
} else } else
{ {
h_u32_to_le(((u8*)in), flip_u32(le_to_h_u32(tmp), 32)); h_u32_to_le(((u8*)in), readback);
} }
break; break;
case 2: case 2:
if (be) if (be)
{ {
h_u16_to_be(((u8*)in), flip_u32(le_to_h_u32(tmp), 32) & 0xffff); h_u16_to_be(((u8*)in), readback & 0xffff);
} else } else
{ {
h_u16_to_le(((u8*)in), flip_u32(le_to_h_u32(tmp), 32) & 0xffff); h_u16_to_le(((u8*)in), readback & 0xffff);
} }
break; break;
case 1: case 1:
*((u8 *)in)= flip_u32(le_to_h_u32(tmp), 32) & 0xff; *((u8 *)in)= readback & 0xff;
break; break;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment