Commit 2079ddd6 authored by Varun Wadekar's avatar Varun Wadekar
Browse files

Tegra186: fix recursion in included headers (tegra_def.h/platform_def.h)



This patch fixes the "Recursion in included headers" error flagged by
Coverity.

Fixes coverity errors "31858: Recursion in included headers" and
"31857: Recursion in included headers"

Change-Id: Icf8838434b1808b396e743e47f59adc452546364
Signed-off-by: default avatarVarun Wadekar <vwadekar@nvidia.com>
parent 3b52fc1f
...@@ -298,6 +298,8 @@ ...@@ -298,6 +298,8 @@
#ifndef __ASSEMBLY__ #ifndef __ASSEMBLY__
#include <sys/types.h>
/******************************************************************************* /*******************************************************************************
* Structure to hold the transaction override settings to use to override * Structure to hold the transaction override settings to use to override
* client inputs * client inputs
......
...@@ -31,8 +31,6 @@ ...@@ -31,8 +31,6 @@
#ifndef __TEGRA_DEF_H__ #ifndef __TEGRA_DEF_H__
#define __TEGRA_DEF_H__ #define __TEGRA_DEF_H__
#include <platform_def.h>
/******************************************************************************* /*******************************************************************************
* These values are used by the PSCI implementation during the `CPU_SUSPEND` * These values are used by the PSCI implementation during the `CPU_SUSPEND`
* and `SYSTEM_SUSPEND` calls as the `state-id` field in the 'power state' * and `SYSTEM_SUSPEND` calls as the `state-id` field in the 'power state'
......
...@@ -29,6 +29,7 @@ ...@@ -29,6 +29,7 @@
*/ */
#include <assert.h> #include <assert.h>
#include <bl_common.h>
#include <debug.h> #include <debug.h>
#include <memctrl_v2.h> #include <memctrl_v2.h>
#include <platform_def.h> #include <platform_def.h>
......
...@@ -30,6 +30,7 @@ ...@@ -30,6 +30,7 @@
#include <arch.h> #include <arch.h>
#include <asm_macros.S> #include <asm_macros.S>
#include <common_def.h>
#include <memctrl_v2.h> #include <memctrl_v2.h>
#include <tegra_def.h> #include <tegra_def.h>
......
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