From patchwork Mon Jul 25 23:19:11 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vincent Palatin X-Patchwork-Id: 106768 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 33C43B7091 for ; Tue, 26 Jul 2011 10:02:46 +1000 (EST) Received: from localhost ([::1]:40065 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QlURO-0006dt-4x for incoming@patchwork.ozlabs.org; Mon, 25 Jul 2011 19:20:02 -0400 Received: from eggs.gnu.org ([140.186.70.92]:53498) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QlUQn-0004fc-TH for qemu-devel@nongnu.org; Mon, 25 Jul 2011 19:19:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QlUQl-0000p1-M4 for qemu-devel@nongnu.org; Mon, 25 Jul 2011 19:19:25 -0400 Received: from smtp-out.google.com ([216.239.44.51]:20623) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QlUQl-0000ov-Id for qemu-devel@nongnu.org; Mon, 25 Jul 2011 19:19:23 -0400 Received: from hpaq13.eem.corp.google.com (hpaq13.eem.corp.google.com [172.25.149.13]) by smtp-out.google.com with ESMTP id p6PNJMfJ026782; Mon, 25 Jul 2011 16:19:23 -0700 Received: from vpa.mtv.corp.google.com (vpa.mtv.corp.google.com [172.22.72.27]) by hpaq13.eem.corp.google.com with ESMTP id p6PNJLWR003821; Mon, 25 Jul 2011 16:19:21 -0700 Received: by vpa.mtv.corp.google.com (Postfix, from userid 125455) id 03D58160CD3; Mon, 25 Jul 2011 16:19:19 -0700 (PDT) From: Vincent Palatin To: Qemu devel Date: Mon, 25 Jul 2011 16:19:11 -0700 Message-Id: <1311635951-11047-8-git-send-email-vpalatin@chromium.org> X-Mailer: git-send-email 1.7.3.1 In-Reply-To: <1311635951-11047-1-git-send-email-vpalatin@chromium.org> References: <1311635951-11047-1-git-send-email-vpalatin@chromium.org> X-System-Of-Record: true X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 216.239.44.51 Cc: Vincent Palatin Subject: [Qemu-devel] [PATCH 7/7] sd: compile SDHCI on PCI platforms X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Vincent Palatin --- Makefile.objs | 4 +++- default-configs/pci.mak | 1 + 2 files changed, 4 insertions(+), 1 deletions(-) diff --git a/Makefile.objs b/Makefile.objs index cea15e4..5676de7 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -244,6 +244,9 @@ hw-obj-$(CONFIG_SMC91C111) += smc91c111.o hw-obj-$(CONFIG_LAN9118) += lan9118.o hw-obj-$(CONFIG_NE2000_ISA) += ne2000-isa.o +# PCI card reader +hw-obj-$(CONFIG_PCI) += sdhci.o + # IDE hw-obj-$(CONFIG_IDE_CORE) += ide/core.o ide/atapi.o hw-obj-$(CONFIG_IDE_QDEV) += ide/qdev.o @@ -375,4 +378,3 @@ libcacard-y = cac.o event.o vcard.o vreader.o vcard_emul_nss.o vcard_emul_type.o vl.o: QEMU_CFLAGS+=$(GPROF_CFLAGS) vl.o: QEMU_CFLAGS+=$(SDL_CFLAGS) - diff --git a/default-configs/pci.mak b/default-configs/pci.mak index 22bd350..113458e 100644 --- a/default-configs/pci.mak +++ b/default-configs/pci.mak @@ -15,3 +15,4 @@ CONFIG_IDE_CORE=y CONFIG_IDE_QDEV=y CONFIG_IDE_PCI=y CONFIG_AHCI=y +CONFIG_SD=y