X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Fpld%2Fxilinx_bit.h;h=625a9d35e96225fe9bf5166ea6ee6a7ac43f2085;hb=385eedfc6f0b82c5d6715c740ee40bdce983ef04;hp=3eb331baadf467b91aefda91794cdcdb1d17cc51;hpb=ca594adb5a71f2bf60c1380172b8e61b075d9479;p=fw%2Fopenocd diff --git a/src/pld/xilinx_bit.h b/src/pld/xilinx_bit.h index 3eb331baa..625a9d35e 100644 --- a/src/pld/xilinx_bit.h +++ b/src/pld/xilinx_bit.h @@ -13,17 +13,15 @@ * GNU General Public License for more details. * * * * 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. * + * along with this program. If not, see . * ***************************************************************************/ -#ifndef XILINX_BIT_H -#define XILINX_BIT_H -#include "types.h" +#ifndef OPENOCD_PLD_XILINX_BIT_H +#define OPENOCD_PLD_XILINX_BIT_H -typedef struct xilinx_bit_file_s -{ +#include "helper/types.h" + +struct xilinx_bit_file { uint8_t unknown_header[13]; uint8_t *source_file; uint8_t *part_name; @@ -31,8 +29,8 @@ typedef struct xilinx_bit_file_s uint8_t *time; uint32_t length; uint8_t *data; -} xilinx_bit_file_t; +}; -int xilinx_read_bit_file(xilinx_bit_file_t *bit_file, const char *filename); +int xilinx_read_bit_file(struct xilinx_bit_file *bit_file, const char *filename); -#endif /* XILINX_BIT_H */ +#endif /* OPENOCD_PLD_XILINX_BIT_H */