fix c99 inline issues
This commit is contained in:
parent
70d4e2e360
commit
71635538ee
2 changed files with 5 additions and 5 deletions
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue