A few more missing-prototypes fixes

This commit is contained in:
Jeff Epler 2021-11-11 08:42:30 -06:00
parent 25ff6b080e
commit cd6599ce65
No known key found for this signature in database
GPG Key ID: D5BF15AB975AB4DE
3 changed files with 2 additions and 5 deletions

View File

@ -50,7 +50,7 @@ typedef struct {
#define DELAY 0x80
uint32_t lookupCfg(uint32_t key, uint32_t defl) {
STATIC uint32_t lookupCfg(uint32_t key, uint32_t defl) {
const uint32_t *ptr = UF2_BINFO->config_data;
if (!ptr || (((uint32_t)ptr) & 3) || *ptr != CFG_MAGIC0) {
// no config data!

View File

@ -195,7 +195,7 @@ STATIC void install_extended_filter(CanMramXidfe *extended, int id1, int id2, in
#define NO_ID (-1)
void set_filters(canio_listener_obj_t *self, size_t nmatch, canio_match_obj_t **matches) {
STATIC void set_filters(canio_listener_obj_t *self, size_t nmatch, canio_match_obj_t **matches) {
int fifo = self->fifo_idx;
if (!nmatch) {

View File

@ -52,6 +52,3 @@ bool board_requests_safe_mode(void) {
void reset_board(void) {
}
void board_deinit(void) {
}