1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

remove obsolete preprocessor macros

This commit is contained in:
Steffen Vogel 2017-02-15 17:57:03 -03:00
parent 5beb70d0c6
commit 3ebfaf287c
2 changed files with 0 additions and 11 deletions

View file

@ -20,12 +20,6 @@
#include "fpga/intc.h"
#include "nodes/fpga.h"
#define REGISTER_IP_TYPE(ip) \
__attribute__((constructor)) static \
void UNIQUE(__register_)() { \
list_push(&ip_types, ip); \
}
extern struct list ip_types; /**< Table of existing FPGA IP core drivers */
enum ip_state {

View file

@ -19,11 +19,6 @@
#include "list.h"
/* Helper macros for registering new models */
#define REGISTER_CBMODEL(cb) \
__attribute__((constructor)) static void __register() { \
list_push(&cbmodels, cb); \
}
extern struct list cbmodels; /**< Table of existing CBuilder models */