Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 296846 Details for
Bug 429878
xserver build failures on ia64/fedora
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
patch to remove ia64 specific PCI code
xserver-1.4.99-ia64-pci-cleanup.patch (text/plain), 3.56 KB, created by
Doug Chapman
on 2008-03-05 05:24:49 UTC
(
hide
)
Description:
patch to remove ia64 specific PCI code
Filename:
MIME Type:
Creator:
Doug Chapman
Created:
2008-03-05 05:24:49 UTC
Size:
3.56 KB
patch
obsolete
>From 3798d7c344d894784ea25ae0c4ace6688c179e98 Mon Sep 17 00:00:00 2001 >From: Doug Chapman <doug.chapman@hp.com> >Date: Wed, 20 Feb 2008 14:01:03 -0500 >Subject: [PATCH] Remove ia64 specific PCI code > >--- > hw/xfree86/os-support/bus/Makefile.am | 12 ------- > hw/xfree86/os-support/bus/Pci.h | 3 +- > hw/xfree86/os-support/linux/Makefile.am | 2 +- > hw/xfree86/os-support/shared/ia64Pci.c | 55 ------------------------------- > 4 files changed, 2 insertions(+), 70 deletions(-) > >diff --git a/hw/xfree86/os-support/bus/Makefile.am b/hw/xfree86/os-support/bus/Makefile.am >index 381b992..5a15430 100644 >--- a/hw/xfree86/os-support/bus/Makefile.am >+++ b/hw/xfree86/os-support/bus/Makefile.am >@@ -27,18 +27,6 @@ if LINUX_ALPHA > PCI_SOURCES += axpPci.c > endif > >-if LINUX_IA64 >-PLATFORM_PCI_SOURCES = \ >- 460gxPCI.c \ >- 460gxPCI.h \ >- altixPCI.c \ >- altixPCI.h \ >- e8870PCI.c \ >- e8870PCI.h \ >- zx1PCI.c \ >- zx1PCI.h >-endif >- > if XORG_BUS_SPARC > PLATFORM_SOURCES = Sbus.c > sdk_HEADERS += xf86Sbus.h >diff --git a/hw/xfree86/os-support/bus/Pci.h b/hw/xfree86/os-support/bus/Pci.h >index 0abb34f..ebac090 100644 >--- a/hw/xfree86/os-support/bus/Pci.h >+++ b/hw/xfree86/os-support/bus/Pci.h >@@ -207,9 +207,8 @@ > # endif > #elif defined(__ia64__) > # if defined(linux) >-# define ARCH_PCI_INIT ia64linuxPciInit >+# define ARCH_PCI_INIT linuxPciInit > # endif >-# define XF86SCANPCI_WRAPPER ia64ScanPCIWrapper > #elif defined(__i386__) || defined(__i386) > # if defined(linux) > # define ARCH_PCI_INIT linuxPciInit >diff --git a/hw/xfree86/os-support/linux/Makefile.am b/hw/xfree86/os-support/linux/Makefile.am >index 5a52ffd..beaae3d 100644 >--- a/hw/xfree86/os-support/linux/Makefile.am >+++ b/hw/xfree86/os-support/linux/Makefile.am >@@ -1,7 +1,7 @@ > noinst_LTLIBRARIES = liblinux.la > > if LINUX_IA64 >-PLATFORM_PCI_SUPPORT = $(srcdir)/lnx_ia64.c $(srcdir)/../shared/ia64Pci.c >+PLATFORM_PCI_SUPPORT = $(srcdir)/../shared/ia64Pci.c > PLATFORM_DEFINES = -DOS_PROBE_PCI_CHIPSET=lnxProbePciChipset > PLATFORM_INCLUDES = -I$(srcdir)/../shared > endif >diff --git a/hw/xfree86/os-support/shared/ia64Pci.c b/hw/xfree86/os-support/shared/ia64Pci.c >index 45522e9..6f6924b 100644 >--- a/hw/xfree86/os-support/shared/ia64Pci.c >+++ b/hw/xfree86/os-support/shared/ia64Pci.c >@@ -42,12 +42,7 @@ > #include <linux/pci.h> > > #include "compiler.h" >-#include "460gxPCI.h" >-#include "e8870PCI.h" >-#include "zx1PCI.h" >-#include "altixPCI.h" > #include "Pci.h" >-#include "ia64Pci.h" > > /* > * We use special in/out routines here since Altix platforms require the >@@ -191,53 +186,3 @@ _X_EXPORT unsigned int inl(unsigned long port) > return val; > } > >-void >-ia64ScanPCIWrapper(scanpciWrapperOpt flags) >-{ >- static IA64Chipset chipset = NONE_CHIPSET; >- >- if (flags == SCANPCI_INIT) { >- >- /* PCI configuration space probes should be done first */ >- if (xorgProbe460GX(flags)) { >- chipset = I460GX_CHIPSET; >- xf86PreScan460GX(); >- return; >- } else if (xorgProbeE8870(flags)) { >- chipset = E8870_CHIPSET; >- xf86PreScanE8870(); >- return; >- } >-#ifdef OS_PROBE_PCI_CHIPSET >- chipset = OS_PROBE_PCI_CHIPSET(flags); >- switch (chipset) { >- case ZX1_CHIPSET: >- xf86PreScanZX1(); >- return; >- case ALTIX_CHIPSET: >- xf86PreScanAltix(); >- return; >- default: >- return; >- } >-#endif >- } else /* if (flags == SCANPCI_TERM) */ { >- >- switch (chipset) { >- case I460GX_CHIPSET: >- xf86PostScan460GX(); >- return; >- case E8870_CHIPSET: >- xf86PostScanE8870(); >- return; >- case ZX1_CHIPSET: >- xf86PostScanZX1(); >- return; >- case ALTIX_CHIPSET: >- xf86PostScanAltix(); >- return; >- default: >- return; >- } >- } >-} >-- >1.5.4.1 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 429878
:
294594
| 296846