mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
drm/radeon: Log Subsystem Vendor and Device Information
Log PCI subsystem vendor and subsystem device ID in addition to PCI vendor and device ID during kernel mode initialisation. This helps to better identify radeon devices of third-party vendors, e. g. for bug analysis. Tested for kernel 2.6.35, 2.6.38 and 3.0 on Asus M2A-VM HDMI board Cc: <stable@kernel.org> Signed-off-by: Thomas Reim <reimth@gmail.com> Reviewed-by: Alex Deucher <alexdeucher@gmail.com> Acked-by: Stephen Michaels <Stephen.Micheals@gmail.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
e384fab8c6
commit
d522d9cc5b
1 changed files with 3 additions and 2 deletions
|
@ -704,8 +704,9 @@ int radeon_device_init(struct radeon_device *rdev,
|
||||||
rdev->gpu_lockup = false;
|
rdev->gpu_lockup = false;
|
||||||
rdev->accel_working = false;
|
rdev->accel_working = false;
|
||||||
|
|
||||||
DRM_INFO("initializing kernel modesetting (%s 0x%04X:0x%04X).\n",
|
DRM_INFO("initializing kernel modesetting (%s 0x%04X:0x%04X 0x%04X:0x%04X).\n",
|
||||||
radeon_family_name[rdev->family], pdev->vendor, pdev->device);
|
radeon_family_name[rdev->family], pdev->vendor, pdev->device,
|
||||||
|
pdev->subsystem_vendor, pdev->subsystem_device);
|
||||||
|
|
||||||
/* mutex initialization are all done here so we
|
/* mutex initialization are all done here so we
|
||||||
* can recall function without having locking issues */
|
* can recall function without having locking issues */
|
||||||
|
|
Loading…
Reference in a new issue