summaryrefslogtreecommitdiffstats
path: root/include/fsl_sec.h
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2015-03-05 08:56:39 -0500
committerTom Rini <trini@konsulko.com>2015-03-05 08:56:39 -0500
commit33d5156f769eeb640f3be4a003ce7907995dcc36 (patch)
treeb73a0f48623055202305db6d41c4b2fbb13fb711 /include/fsl_sec.h
parent02ebe6f702ec8d025926b0ea7c2088e302c5a302 (diff)
downloadblackbird-obmc-uboot-33d5156f769eeb640f3be4a003ce7907995dcc36.tar.gz
blackbird-obmc-uboot-33d5156f769eeb640f3be4a003ce7907995dcc36.zip
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>
Diffstat (limited to 'include/fsl_sec.h')
-rw-r--r--include/fsl_sec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fsl_sec.h b/include/fsl_sec.h
index dbfae68ef4..ebb1ac6d40 100644
--- a/include/fsl_sec.h
+++ b/include/fsl_sec.h
@@ -180,7 +180,7 @@ struct jr_regs {
* related information
*/
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 */
uint16_t addr_hi; /* Memory Address of start of buffer - hi */
uint16_t reserved_zero;
OpenPOWER on IntegriCloud