X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Fpld%2Fpld.h;h=b183e3e052c4ca12cda5bc5f5e71ff15ac66f6be;hb=2861877b32a7a2f4022a1c3d9b66c9b4879878ac;hp=2b88d9dae5fcd2bf9818a882e8e3f05bc55c94e5;hpb=db2086897a581111bb86a0fb49d72b776a9801a9;p=fw%2Fopenocd diff --git a/src/pld/pld.h b/src/pld/pld.h index 2b88d9dae..b183e3e05 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 (*register_commands)(struct command_context *cmd_ctx); + 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_register_commands(struct command_context *cmd_ctx); -int pld_init(struct command_context_s *cmd_ctx); +int pld_init(struct command_context *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)