aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@woody.linux-foundation.org>2007-05-07 20:35:42 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-05-07 20:35:42 -0400
commit5b94f675f57e4ff16c8fda09088d7480a84dcd91 (patch)
tree53d311c909a3f333d48ab70d93e8a9010056d498
parentd12db0b08f6c14dfd1438f6f6ad49dcd663c9ae5 (diff)
parentd679f805e7d16291f7671710dd42522561a46611 (diff)
Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6
* master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6: [SCSI] esp_scsi: Fix section mismatch warnings. [VIDEO] sunxvr2500: Fix PCI device ID table.
-rw-r--r--drivers/scsi/esp_scsi.c2
-rw-r--r--drivers/video/sunxvr2500.c16
2 files changed, 9 insertions, 9 deletions
diff --git a/drivers/scsi/esp_scsi.c b/drivers/scsi/esp_scsi.c
index 99ce03331b64..ec71061aef61 100644
--- a/drivers/scsi/esp_scsi.c
+++ b/drivers/scsi/esp_scsi.c
@@ -2212,7 +2212,7 @@ static void __devinit esp_init_swstate(struct esp *esp)
2212} 2212}
2213 2213
2214/* This places the ESP into a known state at boot time. */ 2214/* This places the ESP into a known state at boot time. */
2215static void __devinit esp_bootup_reset(struct esp *esp) 2215static void esp_bootup_reset(struct esp *esp)
2216{ 2216{
2217 u8 val; 2217 u8 val;
2218 2218
diff --git a/drivers/video/sunxvr2500.c b/drivers/video/sunxvr2500.c
index 4010492c6920..4316c7fe8e21 100644
--- a/drivers/video/sunxvr2500.c
+++ b/drivers/video/sunxvr2500.c
@@ -237,14 +237,14 @@ static void __devexit s3d_pci_unregister(struct pci_dev *pdev)
237} 237}
238 238
239static struct pci_device_id s3d_pci_table[] = { 239static struct pci_device_id s3d_pci_table[] = {
240 { /* XVR-2500 */ 240 { PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x002c), },
241 PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x0032), 241 { PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x002d), },
242 .driver_data = 1, 242 { PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x002e), },
243 }, 243 { PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x002f), },
244 { /* XVR-500 */ 244 { PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x0030), },
245 PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x07a2), 245 { PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x0031), },
246 .driver_data = 0, 246 { PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x0032), },
247 }, 247 { PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x0033), },
248 { 0, } 248 { 0, }
249}; 249};
250 250