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/include/amd_pcie_helpers.h | |
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/include/amd_pcie_helpers.h')
-rw-r--r-- | drivers/gpu/drm/amd/include/amd_pcie_helpers.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/amd/include/amd_pcie_helpers.h b/drivers/gpu/drm/amd/include/amd_pcie_helpers.h index 5725bf85eacc..7e5a965450c7 100644 --- a/drivers/gpu/drm/amd/include/amd_pcie_helpers.h +++ b/drivers/gpu/drm/amd/include/amd_pcie_helpers.h | |||
@@ -82,7 +82,7 @@ static inline uint16_t get_pcie_lane_support(uint32_t pcie_lane_width_cap, | |||
82 | 82 | ||
83 | switch (pcie_lane_width_cap) { | 83 | switch (pcie_lane_width_cap) { |
84 | case 0: | 84 | case 0: |
85 | printk(KERN_ERR "No valid PCIE lane width reported"); | 85 | pr_err("No valid PCIE lane width reported\n"); |
86 | break; | 86 | break; |
87 | case CAIL_PCIE_LINK_WIDTH_SUPPORT_X1: | 87 | case CAIL_PCIE_LINK_WIDTH_SUPPORT_X1: |
88 | new_pcie_lanes = 1; | 88 | new_pcie_lanes = 1; |
@@ -126,7 +126,7 @@ static inline uint16_t get_pcie_lane_support(uint32_t pcie_lane_width_cap, | |||
126 | } | 126 | } |
127 | } | 127 | } |
128 | if (j > 7) | 128 | if (j > 7) |
129 | printk(KERN_ERR "Cannot find a valid PCIE lane width!"); | 129 | pr_err("Cannot find a valid PCIE lane width!\n"); |
130 | } | 130 | } |
131 | } | 131 | } |
132 | break; | 132 | break; |