diff options
author | Jean-Jacques Hiblot <jjhiblot@ti.com> | 2017-07-07 12:13:34 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-07-10 14:26:05 -0400 |
commit | 6b26aaef083957b75bcd69aa65bd6ffcf9245bb3 (patch) | |
tree | 1266c15ca1e1cca309afce2e45747cee0145fc46 | |
parent | c5c1756c68bd9ba6f6e72e642340c483b754bd8b (diff) |
pipe3: Fix broken dependency
ARCH_OMAP2 has been renamed ARCH_OMAP2PLUS in commit a93fbf4a7892
("ARM: omap2+: rename config to ARCH_OMAP2PLUS and consolidate Kconfig")
Signed-off-by: Jean-Jacques Hiblot <jjhiblot@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | drivers/phy/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/phy/Kconfig b/drivers/phy/Kconfig index a91a6946b8..7841554d09 100644 --- a/drivers/phy/Kconfig +++ b/drivers/phy/Kconfig @@ -43,7 +43,7 @@ config PHY_SANDBOX config PIPE3_PHY bool "Support omap's PIPE3 PHY" - depends on PHY && ARCH_OMAP2 + depends on PHY && ARCH_OMAP2PLUS help Support for the omap PIPE3 phy for sata @@ -52,7 +52,7 @@ config PIPE3_PHY config SPL_PIPE3_PHY bool "Support omap's PIPE3 PHY in SPL" - depends on SPL_PHY && ARCH_OMAP2 + depends on SPL_PHY && ARCH_OMAP2PLUS help Support for the omap PIPE3 phy for sata in SPL |