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

Commit 32dee01e authored by Tony Lindgren's avatar Tony Lindgren
Browse files

ARM: OMAP: Fix relative includes for debug-devices.h

As discussed on linux-arm-kernel, we want to avoid
relative includes for the arch/arm/*omap* shared code:

http://www.spinics.net/lists/linux-omap/msg80520.html



Let's add plat/debug-devices.h for debug_card_init()
to fix the relative includes.

Note that drivers must not use this header as it will
break build for omap2+ CONFIG_MULTIPLATFORM builds.

Cc: Paul Walmsley <paul@pwsan.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 5c2e8852
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -33,7 +33,7 @@
#include <asm/mach/map.h>

#include <plat-omap/dma-omap.h>
#include "debug-devices.h"
#include <plat/debug-devices.h>

#include <video/omapdss.h>
#include <video/omap-panel-generic-dpi.h>
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@
#include <linux/smc91x.h>

#include <mach/hardware.h>
#include "../mach-omap2/debug-devices.h"
#include <plat/debug-devices.h>

/* Many OMAP development platforms reuse the same "debug board"; these
 * platforms include H2, H3, H4, and Perseus2.
+0 −7
Original line number Diff line number Diff line
#ifndef _OMAP_DEBUG_DEVICES_H
#define _OMAP_DEBUG_DEVICES_H

#include <linux/types.h>

/* for TI reference platforms sharing the same debug card */
extern int debug_card_init(u32 addr, unsigned gpio);

#endif