Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 37490
b: refs/heads/master
c: 242ef0e
h: refs/heads/master
v: v3
  • Loading branch information
Dave committed Sep 21, 2006
1 parent 6457f08 commit a045732
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 12 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3d77461ecd7fb92bb888f69478e3518b3c947ce3
refs/heads/master: 242ef0e1e7e5bb7e80c3620c1aa55168819d6fb8
3 changes: 0 additions & 3 deletions trunk/drivers/char/drm/drmP.h
Original file line number Diff line number Diff line change
Expand Up @@ -700,9 +700,6 @@ typedef struct drm_device {

struct pci_dev *pdev; /**< PCI device structure */
int pci_domain; /**< PCI bus domain number */
int pci_bus; /**< PCI bus number */
int pci_slot; /**< PCI slot number */
int pci_func; /**< PCI function number */
#ifdef __alpha__
struct pci_controller *hose;
#endif
Expand Down
9 changes: 6 additions & 3 deletions trunk/drivers/char/drm/drm_ioctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,9 @@ int drm_setunique(struct inode *inode, struct file *filp,
bus &= 0xff;

if ((domain != dev->pci_domain) ||
(bus != dev->pci_bus) ||
(slot != dev->pci_slot) || (func != dev->pci_func))
(bus != dev->pdev->bus->number) ||
(slot != PCI_SLOT(dev->pdev->devfn)) ||
(func != PCI_FUNC(dev->pdev->devfn)))
return -EINVAL;

return 0;
Expand All @@ -148,7 +149,9 @@ static int drm_set_busid(drm_device_t * dev)
return ENOMEM;

len = snprintf(dev->unique, dev->unique_len, "pci:%04x:%02x:%02x.%d",
dev->pci_domain, dev->pci_bus, dev->pci_slot, dev->pci_func);
dev->pci_domain, dev->pdev->bus->number,
PCI_SLOT(dev->pdev->devfn),
PCI_FUNC(dev->pdev->devfn));

if (len > dev->unique_len)
DRM_ERROR("Unique buffer overflowed\n");
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/char/drm/drm_irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ int drm_irq_by_busid(struct inode *inode, struct file *filp,
return -EFAULT;

if ((p.busnum >> 8) != dev->pci_domain ||
(p.busnum & 0xff) != dev->pci_bus ||
p.devnum != dev->pci_slot || p.funcnum != dev->pci_func)
(p.busnum & 0xff) != dev->pdev->bus->number ||
p.devnum != PCI_SLOT(dev->pdev->devfn) || p.funcnum != PCI_FUNC(dev->pdev->devfn))
return -EINVAL;

p.irq = dev->irq;
Expand Down
3 changes: 0 additions & 3 deletions trunk/drivers/char/drm/drm_stub.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,6 @@ static int drm_fill_in_dev(drm_device_t * dev, struct pci_dev *pdev,
#else
dev->pci_domain = 0;
#endif
dev->pci_bus = pdev->bus->number;
dev->pci_slot = PCI_SLOT(pdev->devfn);
dev->pci_func = PCI_FUNC(pdev->devfn);
dev->irq = pdev->irq;

dev->maplist = drm_calloc(1, sizeof(*dev->maplist), DRM_MEM_MAPS);
Expand Down

0 comments on commit a045732

Please sign in to comment.