diff options
author | Andrew Shadura | 2016-05-24 15:56:21 +0200 |
---|---|---|
committer | Stefano Babic | 2016-06-07 18:13:07 +0200 |
commit | aacc10c5be41dabdc7d8ad567b3bfff888ad4037 (patch) | |
tree | 2a9e9513a6c895d6831beb1975bdeff3b50c333f /include/configs/ge_bx50v3.h | |
parent | c26ffd9b3cc20143058bb8917a137f8a25249d9a (diff) |
board: ge: bx50v3: make SATA optional and disabled by default
The SATA support is only useful for development and shouldn't be enabled
in production, so it has to be disabled in U-boot by default.
Signed-off-by: Andrew Shadura <andrew.shadura@collabora.co.uk>
Diffstat (limited to 'include/configs/ge_bx50v3.h')
-rw-r--r-- | include/configs/ge_bx50v3.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/configs/ge_bx50v3.h b/include/configs/ge_bx50v3.h index ccaa2b4e39e..98f20c6daab 100644 --- a/include/configs/ge_bx50v3.h +++ b/include/configs/ge_bx50v3.h @@ -60,13 +60,14 @@ #define CONFIG_MXC_OCOTP /* SATA Configs */ -#define CONFIG_CMD_SATA +#ifdef CONFIG_CMD_SATA #define CONFIG_DWC_AHSATA #define CONFIG_SYS_SATA_MAX_DEVICE 1 #define CONFIG_DWC_AHSATA_PORT_ID 0 #define CONFIG_DWC_AHSATA_BASE_ADDR SATA_ARB_BASE_ADDR #define CONFIG_LBA48 #define CONFIG_LIBATA +#endif /* MMC Configs */ #define CONFIG_FSL_ESDHC |