From patchwork Fri Jul 13 03:49:41 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Greg Ungerer X-Patchwork-Id: 170775 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 0F6D12C0319 for ; Fri, 13 Jul 2012 13:50:37 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753079Ab2GMDuG (ORCPT ); Thu, 12 Jul 2012 23:50:06 -0400 Received: from dnvwsmailout1.mcafee.com ([161.69.31.173]:39748 "EHLO DNVWSMAILOUT1.mcafee.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751660Ab2GMDuF (ORCPT ); Thu, 12 Jul 2012 23:50:05 -0400 Received: from SNCEXHT2.corp.nai.org (unknown [10.68.5.52]) by DNVWSMAILOUT1.mcafee.com with smtp id 0c53_edd5_057354e2_fc40_4baa_a800_7eaa29be4adb; Thu, 12 Jul 2012 22:50:04 -0500 Received: from SNCEXAMMB3.corp.nai.org (10.68.48.8) by SNCEXHT2.corp.nai.org (10.68.5.52) with Microsoft SMTP Server (TLS) id 8.3.245.1; Thu, 12 Jul 2012 20:47:57 -0700 Received: from localhost.localdomain (172.22.196.22) by mail.na.nai.com (10.68.48.8) with Microsoft SMTP Server id 8.3.245.1; Thu, 12 Jul 2012 20:47:56 -0700 From: To: , CC: Greg Ungerer Subject: [PATCH] pci: add pci resource code to build for M68K architecture Date: Fri, 13 Jul 2012 13:49:41 +1000 Message-ID: <1342151381-15255-1-git-send-email-gerg@snapgear.com> X-Mailer: git-send-email 1.5.5.1 MIME-Version: 1.0 Sender: linux-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org From: Greg Ungerer The ColdFire M54xx family of CPU cores (supported by the m68k arch code) have PCI bus harwdare. We want to be able to use this and will need the setup-bus.c and setup-irq.c helper functions. So when CONFIG_M68K is enabled add them to the objs build list. Signed-off-by: Greg Ungerer --- drivers/pci/Makefile | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/pci/Makefile b/drivers/pci/Makefile index 01c001f..8d688b2 100644 --- a/drivers/pci/Makefile +++ b/drivers/pci/Makefile @@ -49,6 +49,7 @@ obj-$(CONFIG_MN10300) += setup-bus.o obj-$(CONFIG_MICROBLAZE) += setup-bus.o obj-$(CONFIG_TILE) += setup-bus.o setup-irq.o obj-$(CONFIG_SPARC_LEON) += setup-bus.o setup-irq.o +obj-$(CONFIG_M68K) += setup-bus.o setup-irq.o # # ACPI Related PCI FW Functions