summaryrefslogtreecommitdiff
path: root/src/pld/pld.h
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 08:15:00 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:08 -0800
commit95bf461c0af385fc6b3abfff610e5510534ef571 (patch)
tree5c273e69025aa2e56cb1e1d3eb9f25d65c3546af /src/pld/pld.h
parentdb08ab8a792a09399d2ffe362f580683ff102707 (diff)
downloadopenocd+libswd-95bf461c0af385fc6b3abfff610e5510534ef571.tar.gz
openocd+libswd-95bf461c0af385fc6b3abfff610e5510534ef571.tar.bz2
openocd+libswd-95bf461c0af385fc6b3abfff610e5510534ef571.tar.xz
openocd+libswd-95bf461c0af385fc6b3abfff610e5510534ef571.zip
pld_device_t -> struct pld_device
Remove misleading typedef and redundant suffix from struct pld_device.
Diffstat (limited to 'src/pld/pld.h')
-rw-r--r--src/pld/pld.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/pld/pld.h b/src/pld/pld.h
index 2b88d9da..4c4c64a7 100644
--- a/src/pld/pld.h
+++ b/src/pld/pld.h
@@ -22,33 +22,33 @@
#include "command.h"
-struct pld_device_s;
+struct pld_device;
#define __PLD_DEVICE_COMMAND(name) \
- COMMAND_HELPER(name, struct pld_device_s *pld)
+ COMMAND_HELPER(name, struct pld_device *pld)
struct pld_driver
{
char *name;
__PLD_DEVICE_COMMAND((*pld_device_command));
int (*register_commands)(struct command_context_s *cmd_ctx);
- int (*load)(struct pld_device_s *pld_device, const char *filename);
+ int (*load)(struct pld_device *pld_device, const char *filename);
};
#define PLD_DEVICE_COMMAND_HANDLER(name) static __PLD_DEVICE_COMMAND(name)
-typedef struct pld_device_s
+struct pld_device
{
struct pld_driver *driver;
void *driver_priv;
- struct pld_device_s *next;
-} pld_device_t;
+ struct pld_device *next;
+};
int pld_register_commands(struct command_context_s *cmd_ctx);
int pld_init(struct command_context_s *cmd_ctx);
-pld_device_t *get_pld_device_by_num(int num);
+struct pld_device *get_pld_device_by_num(int num);
#define ERROR_PLD_DEVICE_INVALID (-1000)
#define ERROR_PLD_FILE_LOAD_FAILED (-1001)