| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
| |
Remove misleading typedef and redundant suffix from struct lpc288x_flash_bank.
|
|
|
|
| |
Remove misleading typedef and redundant suffix from struct lpc2000_flash_bank.
|
|
|
|
| |
Remove misleading typedef and redundant suffix from struct flash_driver.
|
|
|
|
| |
Remove misleading typedef and redundant suffix from struct flash_sector.
|
|
|
|
| |
Remove misleading typedef and redundant suffix from struct faux_flash_bank.
|
|
|
|
| |
Remove misleading typedef and redundant suffix from struct ecosflash_flash_bank.
|
|
|
|
| |
Remove misleading typedef and redundant suffix from struct cfi_fixup.
|
|
|
|
| |
Remove misleading typedef and redundant suffix from struct cfi_unlock_addresses.
|
|
|
|
| |
Remove misleading typedef and redundant suffix from struct cfi_spansion_pri_ext.
|
|
|
|
| |
Remove misleading typedef and redundant suffix from struct cfi_atmel_pri_ext.
|
|
|
|
| |
Remove misleading typedef and redundant suffix from struct cfi_intel_pri_ext.
|
|
|
|
| |
Remove misleading typedef and redundant suffix from struct cfi_flash_bank.
|
|
|
|
| |
Remove misleading typedef and redundant suffix from struct avrf_flash_bank.
|
|
|
|
| |
Remove misleading typedef and redundant suffix from struct avrf_type.
|
|
|
|
| |
Remove misleading typedef and redundant suffix from struct at91sam7_flash_bank.
|
|
|
|
| |
Remove useless typedef from struct jtag_command.
|
|
|
|
| |
Remove misleading typedef from union jtag_container.
|
|
|
|
| |
Remove misleading typedef from struct sleep_command.
|
|
|
|
| |
Remove misleading typedef from struct end_state_command.
|
|
|
|
| |
Remove misleading typedef from struct reset_command.
|
|
|
|
| |
Remove misleading typedef from struct stableclocks_command.
|
|
|
|
| |
Remove misleading typedef from struct runtest_command.
|
|
|
|
| |
Remove misleading typedef from struct pathmove_command.
|
|
|
|
| |
Remove misleading typedef from struct statemove_command.
|
|
|
|
| |
Remove misleading typedef from struct cmd_queue_page.
|
|
|
|
| |
Remove misleading typedef on struct scan_command.
|
|
|
|
| |
Remove useless typedef for struct insert_insignification_operation.
|
|
|
|
| |
Remove misleading typedef and redundant suffix.
|
|
|
|
| |
Remove useless typedef.
|
|
|
|
| |
Remove misleading typedef from ft2232_device; it was barely used.
|
|
|
|
| |
Remove misleading typedef and redundant suffix.
|
|
|
|
| |
Remove useless typedef and redundant suffix from parport struct cable.
|
|
|
|
|
| |
Remove misleading typedef from struct struct pending_scan_result.
Future patches need to remove these duplicated types and code.
|
|
|
|
| |
Remove useless typedef and redundant suffix from struct armjtatew_jtag.
|
|
|
|
| |
Remove useless typedef and redundant suffix from jtag_tap_event_action.
|
|
|
|
|
| |
Remove useless typedef and redundant suffix from jtag_event_callback.
Add documentation for the structure.
|
|
|
|
| |
Remove useless typedef and redundant suffix from struct jtag_interface.
|
|
|
|
| |
Removes another useless typedef and suffix.
|
|
|
|
| |
Remove useless typedef and redundant suffix.
|
|
|
|
|
|
|
| |
Move the bitq_state structure from the header to source file, as it
is used internally.
Also removes its silly typedef.
|
|
|
|
| |
Remove useless structure typedef.
|
|
|
|
|
| |
Search and destroy the jtag_tap_t typedef. This also cleans up a
layering violation, removing the declaration from types.h.
|
|
|
|
| |
Remove useless structure typedef.
|
|
|
|
|
| |
Removes useless and confusing typedef for log callback structure.
Types with _t should be suitable for passing by-value as arguments.
|
|
|
|
|
| |
Somehow I managed to slip a temporary build file into the tree.
Remove it and update the .gitignore file so it doesn't happen again.
|
|
|
|
|
|
| |
The hello module provides the 'hello' command, printing a greetings
to the command console. It can grow to serve as pedagogical example
of services that OpenOCD developers should use: a runnable style guide.
|
|
|
|
|
| |
This patch removes 'cmd' from the list of direct parameters, moving
that pointer to args[-1] (by way of the new CMD_NAME macro).
|
|
|
|
|
| |
This patch prevents command handlers from modifying the strings passed
in the 'args' array.
|
|
|
|
|
| |
Prevents the command name from being modified in command handlers.
Again, this has cascading effects, but the patches are fairly minimal.
|
|
|
|
|
|
| |
The number of command arguments will always be 0 or more, so use
the right type in handlers. This has a cascading effect up through
the layers, but the new COMMAND_HANDLER macros prevented total chaos.
|