Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 966a8198 authored by Kumar Gala's avatar Kumar Gala Committed by Stephen Boyd
Browse files

msm: smd: fix in-tree compilation



In-tree compilation for arch/arm/mach-msm/smd_init_dt.c was hitting this
error:

arch/arm/mach-msm/smd_init_dt.c:24:25: fatal error: smd_private.h: No such
file or directory
 #include <smd_private.h>

This was due to using <> instead of "" style include.

Change-Id: I462d259410377244cd551db910df9e15521544ed
Signed-off-by: default avatarKumar Gala <galak@codeaurora.org>
parent 7bb58488
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@
#include <linux/io.h>

#include <mach/msm_ipc_logging.h>
#include <smd_private.h>
#include "smd_private.h"

#define MODULE_NAME "msm_smd"
#define IPC_LOG(level, x...) do { \