Use system include <foo.h> notation for libosmocore headers

the curent local copies of libosmocore headers + source is a temporary
hack anyway. We should instead rely on a system-wide install of
libosmocore cross-compiled for arm-none-eabi.  But leave that as a
second (later) step beyond this patch.

Change-Id: Ia63fd842d45a2b404233b4326050e7eda0604cf0
This commit is contained in:
Harald Welte
2018-06-29 22:25:42 +02:00
parent ebe8b2069c
commit 9d90d284ed
14 changed files with 21 additions and 21 deletions

View File

@@ -6,7 +6,7 @@
#include "board.h"
#include "simtrace.h"
#include "utils.h"
#include "osmocom/core/timer.h"
#include <osmocom/core/timer.h>
unsigned int g_unique_id[4];

View File

@@ -7,7 +7,7 @@
#include "simtrace.h"
#include "utils.h"
#include "req_ctx.h"
#include "osmocom/core/timer.h"
#include <osmocom/core/timer.h>
unsigned int g_unique_id[4];

View File

@@ -9,7 +9,7 @@
#include "sim_switch.h"
#include "boardver_adc.h"
#include "card_pres.h"
#include "osmocom/core/timer.h"
#include <osmocom/core/timer.h>
#include "usb_buf.h"
static const Pin pin_hubpwr_override = PIN_PRTPWR_OVERRIDE;

View File

@@ -9,7 +9,7 @@
#include "board.h"
#include "trace.h"
#include "wwan_perst.h"
#include "osmocom/core/timer.h"
#include <osmocom/core/timer.h>
struct wwan_perst {
uint8_t idx;

View File

@@ -5,7 +5,7 @@
#include "simtrace.h"
#include "utils.h"
#include "sim_switch.h"
#include "osmocom/core/timer.h"
#include <osmocom/core/timer.h>
#include "usb_buf.h"
void board_exec_dbg_cmd(int ch)

View File

@@ -1,6 +1,6 @@
#pragma once
#include "osmocom/core/linuxlist.h"
#include <osmocom/core/linuxlist.h>
#include "utils.h"
static inline void llist_add_irqsafe(struct llist_head *_new,

View File

@@ -1,7 +1,7 @@
#pragma once
#include "osmocom/core/linuxlist.h"
#include "osmocom/core/msgb.h"
#include <osmocom/core/linuxlist.h>
#include <osmocom/core/msgb.h>
/* buffered USB endpoint (with queue of msgb) */
struct usb_buffered_ep {

View File

@@ -33,8 +33,8 @@
#include "card_emu.h"
#include "simtrace_prot.h"
#include "usb_buf.h"
#include "osmocom/core/linuxlist.h"
#include "osmocom/core/msgb.h"
#include <osmocom/core/linuxlist.h>
#include <osmocom/core/msgb.h>
#define NUM_SLOTS 2

View File

@@ -3,8 +3,8 @@
#include "usb_buf.h"
#include "utils.h"
#include "osmocom/core/linuxlist.h"
#include "osmocom/core/msgb.h"
#include <osmocom/core/linuxlist.h>
#include <osmocom/core/msgb.h>
#include <errno.h>
/***********************************************************************

View File

@@ -6,8 +6,8 @@
#include "card_emu.h"
#include "iso7816_fidi.h"
#include "utils.h"
#include "osmocom/core/linuxlist.h"
#include "osmocom/core/msgb.h"
#include <osmocom/core/linuxlist.h>
#include <osmocom/core/msgb.h>
#include "llist_irqsafe.h"
#include "usb_buf.h"
#include "simtrace_prot.h"

View File

@@ -3,7 +3,7 @@
#include "talloc.h"
#include "trace.h"
#include "utils.h"
#include "osmocom/core/utils.h"
#include <osmocom/core/utils.h>
#define NUM_RCTX_SMALL 10
#define RCTX_SIZE_SMALL 348

View File

@@ -2,8 +2,8 @@
#include "trace.h"
#include "usb_buf.h"
#include "osmocom/core/linuxlist.h"
#include "osmocom/core/msgb.h"
#include <osmocom/core/linuxlist.h>
#include <osmocom/core/msgb.h>
#include <errno.h>
#define USB_ALLOC_SIZE 280

View File

@@ -60,8 +60,8 @@ struct timezone;
#include <stdbool.h>
#include "osmocom/core/linuxlist.h"
#include "osmocom/core/linuxrbtree.h"
#include <osmocom/core/linuxlist.h>
#include <osmocom/core/linuxrbtree.h>
/**
* Timer management:

View File

@@ -33,8 +33,8 @@
#include <assert.h>
#include <limits.h>
#include "osmocom/core/linuxlist.h"
#include "osmocom/core/timer.h"
#include <osmocom/core/linuxlist.h>
#include <osmocom/core/timer.h>
/* These store the amount of time that we wait until next timer expires. */
static struct osmo_timeval nearest;