X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=blobdiff_plain;f=src%2Fpld%2Fpld.h;h=eb200f622f72f0d7a55e77b2b7d77267bd523428;hp=3c7e4ffba8283e01baf53dd876c571fbac6dad3e;hb=c4f2a018a594d5cc93f557e30a7906641b59ec56;hpb=250dc580561269737ca9a87ef92cb6aaa4570842;ds=sidebyside diff --git a/src/pld/pld.h b/src/pld/pld.h index 3c7e4ffba8..eb200f622f 100644 --- a/src/pld/pld.h +++ b/src/pld/pld.h @@ -17,6 +17,7 @@ * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ + #ifndef PLD_H #define PLD_H @@ -25,20 +26,19 @@ 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 -{ +struct pld_driver { const char *name; __PLD_DEVICE_COMMAND((*pld_device_command)); 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; @@ -48,7 +48,7 @@ int pld_register_commands(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 */