remove drm pci from 2.5 days
parent
ff4b5ccdb4
commit
aa07b2ab0e
|
@ -86,12 +86,6 @@
|
||||||
pos = n, n = list_entry(n->member.next, typeof(*n), member))
|
pos = n, n = list_entry(n->member.next, typeof(*n), member))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
|
|
||||||
#define DRM_PCI_DEV(pdev) &pdev->dev
|
|
||||||
#else
|
|
||||||
#define DRM_PCI_DEV(pdev) NULL
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef __user
|
#ifndef __user
|
||||||
#define __user
|
#define __user
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -162,7 +162,7 @@ struct class_device *drm_sysfs_device_add(struct drm_sysfs_class *cs,
|
||||||
memset(s_dev, 0x00, sizeof(*s_dev));
|
memset(s_dev, 0x00, sizeof(*s_dev));
|
||||||
|
|
||||||
s_dev->dev = MKDEV(DRM_MAJOR, head->minor);
|
s_dev->dev = MKDEV(DRM_MAJOR, head->minor);
|
||||||
s_dev->class_dev.dev = DRM_PCI_DEV(head->dev->pdev);
|
s_dev->class_dev.dev = &head->dev->pdev->dev;
|
||||||
s_dev->class_dev.class = &cs->class;
|
s_dev->class_dev.class = &cs->class;
|
||||||
|
|
||||||
snprintf(s_dev->class_dev.class_id, BUS_ID_SIZE, "card%d", head->minor);
|
snprintf(s_dev->class_dev.class_id, BUS_ID_SIZE, "card%d", head->minor);
|
||||||
|
|
Loading…
Reference in New Issue