X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=blobdiff_plain;f=src%2Fpld%2Fpld.h;h=c089fe6352664effdb91eee3f572e3b4e49e05ad;hp=b183e3e052c4ca12cda5bc5f5e71ff15ac66f6be;hb=72466de39931cbe872db367c878c5ed17a4b67f3;hpb=98723c4ecdbe06f90c66f3abec27b792c3b38e34 diff --git a/src/pld/pld.h b/src/pld/pld.h index b183e3e052..c089fe6352 100644 --- a/src/pld/pld.h +++ b/src/pld/pld.h @@ -15,30 +15,30 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * ***************************************************************************/ + #ifndef PLD_H #define PLD_H -#include "command.h" +#include struct pld_device; #define __PLD_DEVICE_COMMAND(name) \ - COMMAND_HELPER(name, struct pld_device *pld) + COMMAND_HELPER(name, struct pld_device *pld) -struct pld_driver -{ - char *name; +struct pld_driver { + const char *name; __PLD_DEVICE_COMMAND((*pld_device_command)); - int (*register_commands)(struct command_context *cmd_ctx); + const struct command_registration *commands; int (*load)(struct pld_device *pld_device, const char *filename); }; -#define PLD_DEVICE_COMMAND_HANDLER(name) static __PLD_DEVICE_COMMAND(name) +#define PLD_DEVICE_COMMAND_HANDLER(name) \ + static __PLD_DEVICE_COMMAND(name) -struct pld_device -{ +struct pld_device { struct pld_driver *driver; void *driver_priv; struct pld_device *next; @@ -46,11 +46,9 @@ struct pld_device int pld_register_commands(struct command_context *cmd_ctx); -int pld_init(struct command_context *cmd_ctx); - struct pld_device *get_pld_device_by_num(int num); -#define ERROR_PLD_DEVICE_INVALID (-1000) -#define ERROR_PLD_FILE_LOAD_FAILED (-1001) +#define ERROR_PLD_DEVICE_INVALID (-1000) +#define ERROR_PLD_FILE_LOAD_FAILED (-1001) -#endif /* PLD_H */ +#endif /* PLD_H */