summaryrefslogtreecommitdiffstats
path: root/Makefile.include
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.include')
-rw-r--r--Makefile.include25
1 files changed, 0 insertions, 25 deletions
diff --git a/Makefile.include b/Makefile.include
index 2b5a3447d..0ea1234e9 100644
--- a/Makefile.include
+++ b/Makefile.include
@@ -130,19 +130,6 @@ enum ftdi_chip_type type = TYPE_232H;
endef
export FTDI_232H_TEST
-define UTSNAME_TEST
-#include <sys/utsname.h>
-struct utsname osinfo;
-int main(int argc, char **argv)
-{
- (void) argc;
- (void) argv;
- uname (&osinfo);
- return 0;
-}
-endef
-export UTSNAME_TEST
-
define LINUX_MTD_TEST
#include <mtd/mtd-user.h>
@@ -181,18 +168,6 @@ int main(int argc, char **argv)
endef
export LINUX_I2C_TEST
-define CLOCK_GETTIME_TEST
-#include <time.h>
-
-int main(int argc, char **argv)
-{
- struct timespec res;
- clock_gettime(CLOCK_REALTIME, &res);
- return 0;
-}
-endef
-export CLOCK_GETTIME_TEST
-
define NI845X_TEST
#include <ni845x.h>