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 152986 Details for
Bug 235902
[SIS PATA SLAVE]: Live CD does not start from IDE cd drive
[?]
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]
Bug fix (I hope)
a1 (text/plain), 1.10 KB, created by
Alan Cox
on 2007-04-19 10:03:17 UTC
(
hide
)
Description:
Bug fix (I hope)
Filename:
MIME Type:
Creator:
Alan Cox
Created:
2007-04-19 10:03:17 UTC
Size:
1.10 KB
patch
obsolete
>--- linux.vanilla-2.6.21-rc6-mm1/drivers/ata/pata_sis.c 2007-04-12 14:15:03.000000000 +0100 >+++ linux-2.6.21-rc6-mm1/drivers/ata/pata_sis.c 2007-04-19 10:42:36.966672184 +0100 >@@ -831,6 +831,7 @@ > struct ata_port_info *port; > struct pci_dev *host = NULL; > struct sis_chipset *chipset = NULL; >+ struct sis_chipset *sets; > > static struct sis_chipset sis_chipsets[] = { > >@@ -885,10 +886,11 @@ > > /* We have to find the bridge first */ > >- for (chipset = &sis_chipsets[0]; chipset->device; chipset++) { >- host = pci_get_device(PCI_VENDOR_ID_SI, chipset->device, NULL); >+ for (sets = &sis_chipsets[0]; sets->device; sets++) { >+ host = pci_get_device(PCI_VENDOR_ID_SI, sets->device, NULL); > if (host != NULL) { >- if (chipset->device == 0x630) { /* SIS630 */ >+ chipset = sets; /* Match found */ >+ if (sets->device == 0x630) { /* SIS630 */ > u8 host_rev; > pci_read_config_byte(host, PCI_REVISION_ID, &host_rev); > if (host_rev >= 0x30) /* 630 ET */ >@@ -899,7 +901,7 @@ > } > > /* Look for concealed bridges */ >- if (host == NULL) { >+ if (chipset == NULL) { > /* Second check */ > u32 idemisc; > u16 trueid;
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 235902
:
152487
|
152852
|
152853
|
152966
|
152967
|
152968
|
152969
| 152986 |
153056
|
153057
|
154592
|
154608
|
155980
|
157394