Commit 9e184e65 authored by Luc Verhaegen's avatar Luc Verhaegen
Browse files

fix up includes to be local


Signed-off-by: default avatarLuc Verhaegen <libv@skynet.be>
parent 3211f013
...@@ -20,11 +20,11 @@ ...@@ -20,11 +20,11 @@
* UMP arch layer for UMP-UDD * UMP arch layer for UMP-UDD
*/ */
#include <ump/ump.h> #include "ump.h"
#include "ump_arch.h" #include "ump_arch.h"
#include <ump/ump_debug.h> #include "ump_debug.h"
#include <ump/ump_uk_types.h> #include "ump_uk_types.h"
#include "ump_uku.h" #include "ump_uku.h"
/** Pointer to an OS-Specific context that we should pass in _uku_ calls */ /** Pointer to an OS-Specific context that we should pass in _uku_ calls */
......
...@@ -23,8 +23,8 @@ ...@@ -23,8 +23,8 @@
#ifndef _UNIFIED_MEMORY_PROVIDER_ARCH_H_ #ifndef _UNIFIED_MEMORY_PROVIDER_ARCH_H_
#define _UNIFIED_MEMORY_PROVIDER_ARCH_H_ #define _UNIFIED_MEMORY_PROVIDER_ARCH_H_
#include <ump/ump.h> #include "ump.h"
#include <ump/ump_ref_drv.h> #include "ump_ref_drv.h"
#include "ump_internal.h" #include "ump_internal.h"
#ifdef __cplusplus #ifdef __cplusplus
......
...@@ -21,11 +21,11 @@ ...@@ -21,11 +21,11 @@
* It relies heavily on a arch backend to do the communication with the UMP device driver. * It relies heavily on a arch backend to do the communication with the UMP device driver.
*/ */
#include <ump/ump.h> #include "ump.h"
#include "ump_internal.h" #include "ump_internal.h"
#include "ump_arch.h" #include "ump_arch.h"
#include <ump/ump_debug.h> #include "ump_debug.h"
#include <ump/ump_osu.h> #include "ump_osu.h"
UMP_API_EXPORT ump_result ump_open(void) UMP_API_EXPORT ump_result ump_open(void)
{ {
......
...@@ -23,8 +23,8 @@ ...@@ -23,8 +23,8 @@
#ifndef _UNIFIED_MEMORY_PROVIDER_INTERNAL_H_ #ifndef _UNIFIED_MEMORY_PROVIDER_INTERNAL_H_
#define _UNIFIED_MEMORY_PROVIDER_INTERNAL_H_ #define _UNIFIED_MEMORY_PROVIDER_INTERNAL_H_
#include <ump/ump.h> #include "ump.h"
#include <ump/ump_osu.h> #include "ump_osu.h"
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
......
...@@ -22,8 +22,8 @@ ...@@ -22,8 +22,8 @@
#define _POSIX_C_SOURCE 200112L #define _POSIX_C_SOURCE 200112L
#include <ump/ump_osu.h> #include "ump_osu.h"
#include <ump/ump_debug.h> #include "ump_debug.h"
#include <pthread.h> #include <pthread.h>
#include <time.h> #include <time.h>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
#include <ump/ump_osu.h> #include "ump_osu.h"
#include <stdlib.h> #include <stdlib.h>
#include <string.h> /* memcmp, memchr, memset */ #include <string.h> /* memcmp, memchr, memset */
......
...@@ -20,12 +20,12 @@ ...@@ -20,12 +20,12 @@
* Implementation of the user space API extensions provided by the reference implementation. * Implementation of the user space API extensions provided by the reference implementation.
*/ */
#include <ump/ump_ref_drv.h> #include "ump_ref_drv.h"
#include <ump/ump.h> #include "ump.h"
#include "ump_internal.h" #include "ump_internal.h"
#include "ump_arch.h" #include "ump_arch.h"
#include <ump/ump_debug.h> #include "ump_debug.h"
#include <ump/ump_osu.h> #include "ump_osu.h"
/* Allocate a buffer which can be used directly by hardware, 4kb aligned */ /* Allocate a buffer which can be used directly by hardware, 4kb aligned */
static ump_handle ump_ref_drv_allocate_internal(unsigned long size, ump_alloc_constraints constraints, ump_cache_enabled cache); static ump_handle ump_ref_drv_allocate_internal(unsigned long size, ump_alloc_constraints constraints, ump_cache_enabled cache);
......
...@@ -22,9 +22,9 @@ ...@@ -22,9 +22,9 @@
#ifndef __UMP_UKU_H__ #ifndef __UMP_UKU_H__
#define __UMP_UKU_H__ #define __UMP_UKU_H__
#include <ump/ump_osu.h> #include "ump_osu.h"
#include <ump/ump_debug.h> #include "ump_debug.h"
#include <ump/ump_uk_types.h> #include "ump_uk_types.h"
#ifdef __cplusplus #ifdef __cplusplus
extern "C" extern "C"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment