Skip to content

Commit

Permalink
fix c99 inline issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sleepybishop committed Oct 7, 2015
1 parent 70d4e2e commit 7163553
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions epp_boards.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@

#define EPP_ADDR_AUTOINCREMENT 0x8000

inline void epp_addr8(board_t *board, u8 addr);
inline u8 epp_read8(board_t *board);
inline void epp_write8(board_t *board, u8 data);
void epp_addr8(board_t *board, u8 addr);
u8 epp_read8(board_t *board);
void epp_write8(board_t *board, u8 data);
int epp_boards_init(board_access_t *access);
void epp_boards_cleanup(board_access_t *access);
void epp_boards_scan(board_access_t *access);
Expand Down
4 changes: 2 additions & 2 deletions eth_boards.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ int eth_boards_init(board_access_t *access);
void eth_boards_cleanup(board_access_t *access);
void eth_boards_scan(board_access_t *access);
void eth_print_info(board_t *board);
inline int eth_send_packet(void *packet, int size);
inline int eth_recv_packet(void *buffer, int size);
int eth_send_packet(void *packet, int size);
int eth_recv_packet(void *buffer, int size);
int lbp16_read(u16 cmd, u32 addr, void *buffer, int size);
int lbp16_write(u16 cmd, u32 addr, void *buffer, int size);
void eth_socket_set_dest_ip(char *addr_name);
Expand Down

0 comments on commit 7163553

Please sign in to comment.