summaryrefslogtreecommitdiff
path: root/sys/dev/pci/drm
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2020-10-15 10:08:37 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2020-10-15 10:08:37 +0000
commit5e2afdf61035dc812a908dbaeda65946ad6e8cc5 (patch)
tree45277d3a9ef2139720ffc83fec61bfc2330e6740 /sys/dev/pci/drm
parent2fd7e1e666c954db4d5375940e0cfe91f6f37a69 (diff)
don't print pci ids when radeondrm attaches
Diffstat (limited to 'sys/dev/pci/drm')
-rw-r--r--sys/dev/pci/drm/radeon/radeon_device.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pci/drm/radeon/radeon_device.c b/sys/dev/pci/drm/radeon/radeon_device.c
index 5c586a4c791..6651a8f6fcd 100644
--- a/sys/dev/pci/drm/radeon/radeon_device.c
+++ b/sys/dev/pci/drm/radeon/radeon_device.c
@@ -1321,9 +1321,10 @@ int radeon_device_init(struct radeon_device *rdev,
}
rdev->fence_context = dma_fence_context_alloc(RADEON_NUM_RINGS);
- printf("initializing kernel modesetting (%s 0x%04X:0x%04X 0x%04X:0x%04X 0x%02X).\n",
+ DRM_INFO("initializing kernel modesetting (%s 0x%04X:0x%04X 0x%04X:0x%04X 0x%02X).\n",
radeon_family_name[rdev->family], pdev->vendor, pdev->device,
pdev->subsystem_vendor, pdev->subsystem_device, pdev->revision);
+ printf("%s: %s\n", rdev->self.dv_xname, radeon_family_name[rdev->family]);
/* mutex initialization are all done here so we
* can recall function without having locking issues */