Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S265822AbTFVUAz (ORCPT ); Sun, 22 Jun 2003 16:00:55 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S265837AbTFVUAz (ORCPT ); Sun, 22 Jun 2003 16:00:55 -0400 Received: from pao-ex01.pao.digeo.com ([12.47.58.20]:56862 "EHLO pao-ex01.pao.digeo.com") by vger.kernel.org with ESMTP id S265822AbTFVUAy (ORCPT ); Sun, 22 Jun 2003 16:00:54 -0400 Date: Sun, 22 Jun 2003 13:15:26 -0700 From: Andrew Morton To: Alex Goddard Cc: torvalds@transmeta.com, linux-kernel@vger.kernel.org Subject: Re: Linux 2.5.73 Message-Id: <20030622131526.0dbb39d0.akpm@digeo.com> In-Reply-To: References: X-Mailer: Sylpheed version 0.9.0pre1 (GTK+ 1.2.10; i686-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 22 Jun 2003 20:14:59.0874 (UTC) FILETIME=[F4EE4020:01C338FA] Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 948 Lines: 30 Alex Goddard wrote: > > drivers/usb/host/ehci-hcd.c:977: error: pci_ids causes a section type > conflict Yup. __devinitdata declarations should not be marked const. --- 25/drivers/usb/host/ehci-hcd.c~ehci_hcd-linkage-fix 2003-06-18 21:48:15.000000000 -0700 +++ 25-akpm/drivers/usb/host/ehci-hcd.c 2003-06-18 21:50:06.000000000 -0700 @@ -974,7 +974,7 @@ static const struct hc_driver ehci_drive /* EHCI spec says PCI is required. */ /* PCI driver selection metadata; PCI hotplugging uses this */ -static const struct pci_device_id __devinitdata pci_ids [] = { { +static struct pci_device_id __devinitdata pci_ids [] = { { /* handle any USB 2.0 EHCI controller */ _ - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/