Skip to content

Commit

Permalink
Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6
Browse files Browse the repository at this point in the history
* 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.
  • Loading branch information
Linus Torvalds committed May 8, 2007
2 parents d12db0b + d679f80 commit 5b94f67
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion drivers/scsi/esp_scsi.c
Original file line number Diff line number Diff line change
Expand Up @@ -2212,7 +2212,7 @@ static void __devinit esp_init_swstate(struct esp *esp)
}

/* This places the ESP into a known state at boot time. */
static void __devinit esp_bootup_reset(struct esp *esp)
static void esp_bootup_reset(struct esp *esp)
{
u8 val;

Expand Down
16 changes: 8 additions & 8 deletions drivers/video/sunxvr2500.c
Original file line number Diff line number Diff line change
Expand Up @@ -237,14 +237,14 @@ static void __devexit s3d_pci_unregister(struct pci_dev *pdev)
}

static struct pci_device_id s3d_pci_table[] = {
{ /* XVR-2500 */
PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x0032),
.driver_data = 1,
},
{ /* XVR-500 */
PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x07a2),
.driver_data = 0,
},
{ PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x002c), },
{ PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x002d), },
{ PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x002e), },
{ PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x002f), },
{ PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x0030), },
{ PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x0031), },
{ PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x0032), },
{ PCI_DEVICE(PCI_VENDOR_ID_3DLABS, 0x0033), },
{ 0, }
};

Expand Down

0 comments on commit 5b94f67

Please sign in to comment.