diff options
author | Joe Perches <joe@perches.com> | 2017-02-28 07:55:52 -0500 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2017-03-29 23:53:24 -0400 |
commit | 7ca85295d8cc280ea79cf6250c47363b7fd92f92 (patch) | |
tree | efcd4b095533ddbb7e03dc305403fde3873d940c /drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c | |
parent | eeca2324900e922b693b2b6ddacc502c78f1c1ef (diff) |
gpu: drm: amd/radeon: Convert printk(KERN_<LEVEL> to pr_<level>
Use a more common logging style.
Miscellanea:
o Coalesce formats and realign arguments
o Neaten a few macros now using pr_<level>
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c b/drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c index 286d6763afa7..e471c08dd249 100644 --- a/drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c +++ b/drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c | |||
@@ -972,9 +972,7 @@ static int gfx_v7_0_init_microcode(struct amdgpu_device *adev) | |||
972 | 972 | ||
973 | out: | 973 | out: |
974 | if (err) { | 974 | if (err) { |
975 | printk(KERN_ERR | 975 | pr_err("gfx7: Failed to load firmware \"%s\"\n", fw_name); |
976 | "gfx7: Failed to load firmware \"%s\"\n", | ||
977 | fw_name); | ||
978 | release_firmware(adev->gfx.pfp_fw); | 976 | release_firmware(adev->gfx.pfp_fw); |
979 | adev->gfx.pfp_fw = NULL; | 977 | adev->gfx.pfp_fw = NULL; |
980 | release_firmware(adev->gfx.me_fw); | 978 | release_firmware(adev->gfx.me_fw); |