diff mbox

[U-Boot,v2,2/7] arm: omap: sata: compile out sata init apis when CONFIG_DISK is defined

Message ID 1454500780-20751-3-git-send-email-mugunthanvnm@ti.com
State Superseded
Delegated to: Simon Glass
Headers show

Commit Message

Mugunthan V N Feb. 3, 2016, 11:59 a.m. UTC
Compile out sata init/reset apis as this will be implemented in
disk-uclass driver to initialize sata devices.

Signed-off-by: Mugunthan V N <mugunthanvnm@ti.com>
---
 arch/arm/cpu/armv7/omap-common/sata.c | 2 ++
 1 file changed, 2 insertions(+)

Comments

Simon Glass Feb. 16, 2016, 4:01 p.m. UTC | #1
On 3 February 2016 at 04:59, Mugunthan V N <mugunthanvnm@ti.com> wrote:
> Compile out sata init/reset apis as this will be implemented in
> disk-uclass driver to initialize sata devices.
>
> Signed-off-by: Mugunthan V N <mugunthanvnm@ti.com>
> ---
>  arch/arm/cpu/armv7/omap-common/sata.c | 2 ++
>  1 file changed, 2 insertions(+)

Reviewed-by: Simon Glass <sjg@chromium.org>
diff mbox

Patch

diff --git a/arch/arm/cpu/armv7/omap-common/sata.c b/arch/arm/cpu/armv7/omap-common/sata.c
index 0c82689..df21ca4 100644
--- a/arch/arm/cpu/armv7/omap-common/sata.c
+++ b/arch/arm/cpu/armv7/omap-common/sata.c
@@ -32,6 +32,7 @@  struct omap_pipe3 sata_phy = {
 	.dpll_map = dpll_map_sata,
 };
 
+#ifndef CONFIG_DISK
 int init_sata(int dev)
 {
 	int ret;
@@ -68,3 +69,4 @@  void scsi_bus_reset(void)
 	ahci_reset((void __iomem *)DWC_AHSATA_BASE);
 	ahci_init((void __iomem *)DWC_AHSATA_BASE);
 }
+#endif