diff options
author | Jon Smirl <jonsmirl@yahoo.com> | 2004-10-10 22:54:55 +0000 |
---|---|---|
committer | Jon Smirl <jonsmirl@yahoo.com> | 2004-10-10 22:54:55 +0000 |
commit | ad549c5ae62fd75aa2bdb8bf5efc4913c476cb02 (patch) | |
tree | 8501388508ca7005b8401427448d01dd12a3c0b7 /linux-core/drm_proc.c | |
parent | 3f02a793514a866401119efc74c20512f4732703 (diff) |
Rename fn_tbl to driver. Core driver now uses pci_driver name which
reflects the personality name.
Diffstat (limited to 'linux-core/drm_proc.c')
-rw-r--r-- | linux-core/drm_proc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux-core/drm_proc.c b/linux-core/drm_proc.c index 0f2bd480..0684da16 100644 --- a/linux-core/drm_proc.c +++ b/linux-core/drm_proc.c @@ -175,10 +175,10 @@ static int drm_name_info(char *buf, char **start, off_t offset, int request, if (dev->unique) { DRM_PROC_PRINT("%s 0x%lx %s\n", - dev->name, (long)old_encode_dev(dev->device), + dev->pdev->driver->name, (long)old_encode_dev(dev->device), dev->unique); } else { - DRM_PROC_PRINT("%s 0x%lx\n", dev->name, + DRM_PROC_PRINT("%s 0x%lx\n", dev->pdev->driver->name, (long)old_encode_dev(dev->device)); } |