Change slip_arch_init prototype

All current platforms ignore the ubr argument, so we remove it
This commit is contained in:
George Oikonomou 2017-10-29 04:21:48 +00:00
parent 6d0f43f291
commit e1df7be496
2 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@ void slip_set_input_callback(void (*callback)(void));
* These machine dependent functions and an interrupt service routine * These machine dependent functions and an interrupt service routine
* must be provided externally (slip_arch.c). * must be provided externally (slip_arch.c).
*/ */
void slip_arch_init(unsigned long ubr); void slip_arch_init(void);
void slip_arch_writeb(unsigned char c); void slip_arch_writeb(unsigned char c);
#endif /* SLIP_H_ */ #endif /* SLIP_H_ */

View File

@ -86,7 +86,7 @@ void slip_set_tcpip_input_callback(void (*callback)(void));
* These machine dependent functions and an interrupt service routine * These machine dependent functions and an interrupt service routine
* must be provided externally (slip_arch.c). * must be provided externally (slip_arch.c).
*/ */
void slip_arch_init(unsigned long ubr); void slip_arch_init(void);
void slip_arch_writeb(unsigned char c); void slip_arch_writeb(unsigned char c);
#endif /* SLIP_H_ */ #endif /* SLIP_H_ */