Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fd7394e

Browse files
committedSep 17, 2022
variants: fix zephyr include warnings
fix #47 Signed-off-by: Dhruva Gole <[email protected]>
1 parent 8a28d3a commit fd7394e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
 

‎variants/arduino_nano_33_ble/arduino_nano_33_ble_pinmap.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/* All the pins that are 100 + x are gpio1 pins and < 100 are in gpio0 */
88
#pragma once
99
#include <zephyr/drivers/gpio.h>
10-
#include <zephyr/zephyr.h>
10+
#include <zephyr/kernel.h>
1111
#include <zephyr/drivers/i2c.h>
1212
#include <zephyr/device.h>
1313

‎variants/arduino_nano_33_ble_sense/arduino_nano_33_ble_sense_pinmap.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/* All the pins that are 100 + x are gpio1 pins and < 100 are in gpio0 */
88
#pragma once
99
#include <zephyr/drivers/gpio.h>
10-
#include <zephyr/zephyr.h>
10+
#include <zephyr/kernel.h>
1111
#include <zephyr/drivers/i2c.h>
1212
#include <zephyr/device.h>
1313

‎variants/arduino_nano_33_iot/arduino_nano_33_iot_pinmap.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/* All the pins that are 100 + x are gpio1 pins and < 100 are in gpio0 */
88
#pragma once
99
#include <zephyr/drivers/gpio.h>
10-
#include <zephyr/zephyr.h>
10+
#include <zephyr/kernel.h>
1111
#include <zephyr/drivers/i2c.h>
1212
#include <zephyr/device.h>
1313

‎variants/nrf52840dk_nrf52840/nrf52840dk_nrf52840_pinmap.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
#include <zephyr/drivers/gpio.h>
1111
#include <zephyr/drivers/i2c.h>
12-
#include <zephyr/zephyr.h>
12+
#include <zephyr/kernel.h>
1313

1414
#define LED_BUILTIN 22
1515

0 commit comments

Comments
 (0)
Please sign in to comment.