diff options
author | Lojewski, Evan <github@meklort.com> | 2019-05-11 17:40:57 -0600 |
---|---|---|
committer | Lojewski, Evan <github@meklort.com> | 2019-05-11 17:40:57 -0600 |
commit | 889a9e53b6ad5d45a2ac3fe99c853c4d03753a2d (patch) | |
tree | b6cf7eee3f0777317a200c8cc346d8b93bf66a06 /libs | |
parent | 447079c15d52cce3a97bbd223194121f7ed609ef (diff) | |
download | bcm5719-ortega-889a9e53b6ad5d45a2ac3fe99c853c4d03753a2d.tar.gz bcm5719-ortega-889a9e53b6ad5d45a2ac3fe99c853c4d03753a2d.zip |
Update cross compilation to use ld from compiler, remove system includes.
Diffstat (limited to 'libs')
-rw-r--r-- | libs/NCSI/ncsi.c | 1 | ||||
-rw-r--r-- | libs/NVRam/include/NVRam.h | 3 | ||||
-rw-r--r-- | libs/Network/include/Network.h | 3 | ||||
-rw-r--r-- | libs/Network/rx.c | 1 | ||||
-rw-r--r-- | libs/Network/tx.c | 1 | ||||
-rw-r--r-- | libs/VPD/include/vpd.h | 4 | ||||
-rw-r--r-- | libs/VPD/vpd.c | 1 |
7 files changed, 3 insertions, 11 deletions
diff --git a/libs/NCSI/ncsi.c b/libs/NCSI/ncsi.c index e2c3b68..cd5df2b 100644 --- a/libs/NCSI/ncsi.c +++ b/libs/NCSI/ncsi.c @@ -49,7 +49,6 @@ #include <APE_SHM_CHANNEL1.h> #include <APE_SHM_CHANNEL2.h> #include <APE_SHM_CHANNEL3.h> -#include <stdbool.h> #include <Network.h> #include <types.h> diff --git a/libs/NVRam/include/NVRam.h b/libs/NVRam/include/NVRam.h index b76dfa7..3be6a3b 100644 --- a/libs/NVRam/include/NVRam.h +++ b/libs/NVRam/include/NVRam.h @@ -44,8 +44,7 @@ #ifndef NVRAM_H #define NVRAM_H -#include <stdbool.h> -#include <stdint.h> +#include <types.h> bool NVRam_acquireLock(void); bool NVRam_releaseLock(void); diff --git a/libs/Network/include/Network.h b/libs/Network/include/Network.h index 92074b4..70c1140 100644 --- a/libs/Network/include/Network.h +++ b/libs/Network/include/Network.h @@ -55,8 +55,7 @@ #include <APE_RX_PORT2.h> #include <APE_TX_PORT3.h> #include <APE_RX_PORT3.h> -#include <stdbool.h> -#include <stdint.h> +#include <types.h> typedef struct { /* TX Registers */ diff --git a/libs/Network/rx.c b/libs/Network/rx.c index 81cb718..069eaef 100644 --- a/libs/Network/rx.c +++ b/libs/Network/rx.c @@ -47,7 +47,6 @@ #include <APE_RX_PORT0.h> #include <Ethernet.h> #include <Network.h> -#include <stdbool.h> #include <types.h> #ifdef CXX_SIMULATOR diff --git a/libs/Network/tx.c b/libs/Network/tx.c index 7625586..0663b0d 100644 --- a/libs/Network/tx.c +++ b/libs/Network/tx.c @@ -46,7 +46,6 @@ #include <APE_TX_PORT0.h> #include <Ethernet.h> #include <Network.h> -#include <stdbool.h> #include <types.h> #ifdef CXX_SIMULATOR diff --git a/libs/VPD/include/vpd.h b/libs/VPD/include/vpd.h index c7c85ea..7245ed3 100644 --- a/libs/VPD/include/vpd.h +++ b/libs/VPD/include/vpd.h @@ -42,9 +42,7 @@ /// @endcond //////////////////////////////////////////////////////////////////////////////// -#include <stdbool.h> -#include <stddef.h> -#include <stdint.h> +#include <types.h> #define VPD_DATA_TYPE_SMALL (0x00) #define VPD_DATA_TYPE_LARGE (0x01) diff --git a/libs/VPD/vpd.c b/libs/VPD/vpd.c index 22b6ca6..824c9b1 100644 --- a/libs/VPD/vpd.c +++ b/libs/VPD/vpd.c @@ -42,7 +42,6 @@ /// @endcond //////////////////////////////////////////////////////////////////////////////// -#include <stdbool.h> #ifdef CXX_SIMULATOR #include <stdio.h> #endif /* CXX_SIMULATOR */ |