X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;f=src%2Fpld%2Fxilinx_bit.h;h=1a35c3be225df9453ee2802349fe732a34bf59ca;hb=c734202dc89bb3ee05a204140b3c890451e79686;hp=f9b96a7b962bfe12016d2187edfb0388cf0941f9;hpb=86e4324f1bd4cd8135cb857e4b940b1f2e872dc3;p=openocd.git diff --git a/src/pld/xilinx_bit.h b/src/pld/xilinx_bit.h index f9b96a7b96..1a35c3be22 100644 --- a/src/pld/xilinx_bit.h +++ b/src/pld/xilinx_bit.h @@ -13,17 +13,13 @@ * 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 -{ +struct xilinx_bit_file { uint8_t unknown_header[13]; uint8_t *source_file; uint8_t *part_name; @@ -31,8 +27,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, 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 */