From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark Langsdorf Subject: [PATCH] ata: Fix build error in sata_highbank Date: Fri, 28 Sep 2012 12:23:37 -0500 Message-ID: <1348853017-9205-1-git-send-email-mark.langsdorf@calxeda.com> Return-path: Received: from smtp188.dfw.emailsrvr.com ([67.192.241.188]:46566 "EHLO smtp188.dfw.emailsrvr.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758673Ab2I1RXe (ORCPT ); Fri, 28 Sep 2012 13:23:34 -0400 Sender: linux-next-owner@vger.kernel.org List-ID: To: linux-next@vger.kernel.org Cc: sfr@canb.auug.org.au, linux-kernel@vger.kernel.org, linux-ide@vger.kernel.org, jgarzik@pobox.com, Mark Langsdorf From: Mark Langsdorf Allow sata_highbank to build even if no other users of libahci.o are built. Signed-off-by: Mark Langsdorf --- drivers/ata/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/ata/Makefile b/drivers/ata/Makefile index 8b384f1..9329daf 100644 --- a/drivers/ata/Makefile +++ b/drivers/ata/Makefile @@ -9,7 +9,7 @@ obj-$(CONFIG_SATA_FSL) += sata_fsl.o obj-$(CONFIG_SATA_INIC162X) += sata_inic162x.o obj-$(CONFIG_SATA_SIL24) += sata_sil24.o obj-$(CONFIG_SATA_DWC) += sata_dwc_460ex.o -obj-$(CONFIG_SATA_HIGHBANK) += sata_highbank.o +obj-$(CONFIG_SATA_HIGHBANK) += sata_highbank.o libahci.o # SFF w/ custom DMA obj-$(CONFIG_PDC_ADMA) += pdc_adma.o -- 1.7.10.4