fsl_sec.h: Fix thinko

In 0200020 we added a number of tests for 'if
defined(CONFIG_SYS_FSL_SEC_LE) && !defined(CONFIG_MX6)' and
accidentally did one as 'ifdef defined...'

Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
Tom Rini 2015-03-05 08:56:39 -05:00
parent 02ebe6f702
commit 33d5156f76
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ struct jr_regs {
* related information * related information
*/ */
struct sg_entry { struct sg_entry {
#ifdef defined(CONFIG_SYS_FSL_SEC_LE) && !defined(CONFIG_MX6) #if defined(CONFIG_SYS_FSL_SEC_LE) && !defined(CONFIG_MX6)
uint32_t addr_lo; /* Memory Address - lo */ uint32_t addr_lo; /* Memory Address - lo */
uint16_t addr_hi; /* Memory Address of start of buffer - hi */ uint16_t addr_hi; /* Memory Address of start of buffer - hi */
uint16_t reserved_zero; uint16_t reserved_zero;