diff --git a/ports/zephyr/machine_i2c.c b/ports/zephyr/machine_i2c.c index 86f7fd8e5..9bb63229d 100644 --- a/ports/zephyr/machine_i2c.c +++ b/ports/zephyr/machine_i2c.c @@ -29,8 +29,8 @@ #include #include -#include -#include +#include +#include #include "py/runtime.h" #include "py/gc.h" diff --git a/ports/zephyr/machine_pin.c b/ports/zephyr/machine_pin.c index f9da2433c..dee66a5c6 100644 --- a/ports/zephyr/machine_pin.c +++ b/ports/zephyr/machine_pin.c @@ -29,8 +29,8 @@ #include #include -#include -#include +#include +#include #include "py/runtime.h" #include "py/gc.h" diff --git a/ports/zephyr/machine_spi.c b/ports/zephyr/machine_spi.c index c54762aa0..2b0911c59 100644 --- a/ports/zephyr/machine_spi.c +++ b/ports/zephyr/machine_spi.c @@ -28,8 +28,8 @@ #include #include -#include -#include +#include +#include #include "py/runtime.h" #include "py/gc.h" diff --git a/ports/zephyr/machine_uart.c b/ports/zephyr/machine_uart.c index 95e33bb25..47ca0945a 100644 --- a/ports/zephyr/machine_uart.c +++ b/ports/zephyr/machine_uart.c @@ -29,8 +29,8 @@ #include #include -#include -#include +#include +#include #include "py/runtime.h" #include "py/stream.h" diff --git a/ports/zephyr/main.c b/ports/zephyr/main.c index 4f735b671..c638f3892 100644 --- a/ports/zephyr/main.c +++ b/ports/zephyr/main.c @@ -29,16 +29,16 @@ #include #include -#include +#include #ifdef CONFIG_NETWORKING -#include +#include #endif #ifdef CONFIG_USB_DEVICE_STACK -#include +#include #endif -#include +#include #include "py/mperrno.h" #include "py/builtin.h" diff --git a/ports/zephyr/modmachine.c b/ports/zephyr/modmachine.c index f4b1c0849..63bd33698 100644 --- a/ports/zephyr/modmachine.c +++ b/ports/zephyr/modmachine.c @@ -28,7 +28,7 @@ #include #include -#include +#include #include "py/obj.h" #include "py/runtime.h" diff --git a/ports/zephyr/modusocket.c b/ports/zephyr/modusocket.c index 40d4aaac5..2b6adf477 100644 --- a/ports/zephyr/modusocket.c +++ b/ports/zephyr/modusocket.c @@ -31,14 +31,14 @@ #include "py/stream.h" #include -#include +#include // Zephyr's generated version header #include -#include -#include -#include +#include +#include +#include #ifdef CONFIG_NET_SOCKETS -#include +#include #endif #define DEBUG_PRINT 0 diff --git a/ports/zephyr/modutime.c b/ports/zephyr/modutime.c index 16ac9af6e..c1c2be1c0 100644 --- a/ports/zephyr/modutime.c +++ b/ports/zephyr/modutime.c @@ -28,7 +28,7 @@ #include "py/mpconfig.h" #if MICROPY_PY_UTIME -#include +#include #include "py/runtime.h" #include "py/smallint.h" diff --git a/ports/zephyr/modzephyr.c b/ports/zephyr/modzephyr.c index 541dfe0b3..f87e2e33f 100644 --- a/ports/zephyr/modzephyr.c +++ b/ports/zephyr/modzephyr.c @@ -29,10 +29,10 @@ #if MICROPY_PY_ZEPHYR #include -#include -#include -#include -#include +#include +#include +#include +#include #include "modzephyr.h" #include "py/runtime.h" diff --git a/ports/zephyr/modzsensor.c b/ports/zephyr/modzsensor.c index 6e8a5ca07..ba6717046 100644 --- a/ports/zephyr/modzsensor.c +++ b/ports/zephyr/modzsensor.c @@ -28,8 +28,8 @@ #include "py/runtime.h" -#include -#include +#include +#include #if MICROPY_PY_ZSENSOR diff --git a/ports/zephyr/mpconfigport.h b/ports/zephyr/mpconfigport.h index 44231e1fc..26610ccce 100644 --- a/ports/zephyr/mpconfigport.h +++ b/ports/zephyr/mpconfigport.h @@ -28,8 +28,8 @@ // Include Zephyr's autoconf.h, which should be made first by Zephyr makefiles #include "autoconf.h" // Included here to get basic Zephyr environment (macros, etc.) -#include -#include +#include +#include // Usually passed from Makefile #ifndef MICROPY_HEAP_SIZE diff --git a/ports/zephyr/mphalport.h b/ports/zephyr/mphalport.h index ffe68da24..615859391 100644 --- a/ports/zephyr/mphalport.h +++ b/ports/zephyr/mphalport.h @@ -1,4 +1,4 @@ -#include +#include #include "shared/runtime/interrupt_char.h" void mp_hal_init(void); diff --git a/ports/zephyr/src/zephyr_getchar.c b/ports/zephyr/src/zephyr_getchar.c index 218fb1864..5bbf1a9f6 100644 --- a/ports/zephyr/src/zephyr_getchar.c +++ b/ports/zephyr/src/zephyr_getchar.c @@ -14,10 +14,10 @@ * limitations under the License. */ -#include -#include -#include -#include +#include +#include +#include +#include #include "zephyr_getchar.h" extern int mp_interrupt_char; diff --git a/ports/zephyr/src/zephyr_start.c b/ports/zephyr/src/zephyr_start.c index 7806eeeea..b24e501c3 100644 --- a/ports/zephyr/src/zephyr_start.c +++ b/ports/zephyr/src/zephyr_start.c @@ -23,8 +23,8 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ -#include -#include +#include +#include #include "zephyr_getchar.h" int real_main(void); diff --git a/ports/zephyr/uart_core.c b/ports/zephyr/uart_core.c index 1313a51ae..1d37f2209 100644 --- a/ports/zephyr/uart_core.c +++ b/ports/zephyr/uart_core.c @@ -27,8 +27,8 @@ #include "py/mpconfig.h" #include "src/zephyr_getchar.h" // Zephyr headers -#include -#include +#include +#include /* * Core UART functions to implement for a port diff --git a/ports/zephyr/zephyr_storage.c b/ports/zephyr/zephyr_storage.c index 2761dcba8..1179c3fda 100644 --- a/ports/zephyr/zephyr_storage.c +++ b/ports/zephyr/zephyr_storage.c @@ -32,11 +32,11 @@ #endif #ifdef CONFIG_DISK_ACCESS -#include +#include #endif #ifdef CONFIG_FLASH_MAP -#include +#include #endif #ifdef CONFIG_DISK_ACCESS