diff options
author | Thierry Reding <treding@nvidia.com> | 2015-11-23 16:46:30 +0100 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2015-12-14 15:46:15 +0100 |
commit | d2d8c3581850dc1b21d903b0680d0e3358d52ae2 (patch) | |
tree | 7a502e63975489e350d38dbda02b9dba5c54d253 /drivers/gpu/drm/tegra/drm.c | |
parent | drm/tegra: checking for IS_ERR() instead of NULL (diff) | |
download | linux-d2d8c3581850dc1b21d903b0680d0e3358d52ae2.tar.xz linux-d2d8c3581850dc1b21d903b0680d0e3358d52ae2.zip |
drm/tegra: Use DRIVER level for IOMMU aperture message
This allows the message to be shown even if core messages are disabled
globally in DRM.
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/gpu/drm/tegra/drm.c')
-rw-r--r-- | drivers/gpu/drm/tegra/drm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/tegra/drm.c b/drivers/gpu/drm/tegra/drm.c index ced5a095d2ad..d9a09251e9f1 100644 --- a/drivers/gpu/drm/tegra/drm.c +++ b/drivers/gpu/drm/tegra/drm.c @@ -137,8 +137,8 @@ static int tegra_drm_load(struct drm_device *drm, unsigned long flags) start = geometry->aperture_start; end = geometry->aperture_end; - DRM_DEBUG("IOMMU context initialized (aperture: %#llx-%#llx)\n", - start, end); + DRM_DEBUG_DRIVER("IOMMU aperture initialized (%#llx-%#llx)\n", + start, end); drm_mm_init(&tegra->mm, start, end - start + 1); } |