drivers: modem: gsm: move header file into modem directory

There is a specified location for modem drivers so move this
header right there.

Signed-off-by: Bartosz Bilas <b.bilas@grinn-global.com>
This commit is contained in:
Bartosz Bilas 2021-10-22 17:32:41 +02:00 committed by Jukka Rissanen
parent 838380bb63
commit cb30cc5f8c
2 changed files with 4 additions and 4 deletions

View file

@ -15,7 +15,7 @@ LOG_MODULE_REGISTER(modem_gsm, CONFIG_MODEM_LOG_LEVEL);
#include <sys/ring_buffer.h>
#include <sys/util.h>
#include <net/ppp.h>
#include <drivers/gsm_ppp.h>
#include <drivers/modem/gsm_ppp.h>
#include <drivers/uart.h>
#include <drivers/console/uart_mux.h>

View file

@ -4,8 +4,8 @@
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef GSM_PPP_H_
#define GSM_PPP_H_
#ifndef ZEPHYR_INCLUDE_DRIVERS_MODEM_GSM_PPP_H_
#define ZEPHYR_INCLUDE_DRIVERS_MODEM_GSM_PPP_H_
/** @cond INTERNAL_HIDDEN */
struct device;
@ -32,4 +32,4 @@ void gsm_ppp_register_modem_power_callback(const struct device *dev,
gsm_modem_power_cb modem_off,
void *user_data);
#endif /* GSM_PPP_H_ */
#endif /* ZEPHYR_INCLUDE_DRIVERS_MODEM_GSM_PPP_H_ */