style(9) identifier alignment

2021-07-01 Thread Charlie Burnett
flavor :) I also have a .clang-format file that very carefully fits the style guide as such, however a bug in clang-format that's fixed in clang 13 prevents it from being much use, but I can submit it nonetheless! Best Regards, Charlie Burnett Index: st

Re: amdgpu(4): use DRM_INFO instead of printf for printing compute unit info

2020-12-03 Thread Charlie Burnett
Mon, Nov 30, 2020 at 2:24 AM Jonathan Gray wrote: > On Mon, Nov 30, 2020 at 12:02:15AM -0600, Charlie Burnett wrote: > > Doesn’t DRM_INFO output even if DRMDEBUG is enabled? I thought DRM_DEBUG > > only output when debug’s enabled while DRM_INFO is pretty much just a > > w

Re: amdgpu(4): use DRM_INFO instead of printf for printing compute unit info

2020-11-29 Thread Charlie Burnett
it’s having issues with. Have a busy week or two but I’ll try to come back to it then! Just wanted to send something in case anyone else had a similar issue. On Sun, Nov 29, 2020 at 11:25 PM Jonathan Gray wrote: > On Sun, Nov 29, 2020 at 10:17:22PM -0600, Charlie Burnett wrote: > >

amdgpu(4): use DRM_INFO instead of printf for printing compute unit info

2020-11-29 Thread Charlie Burnett
Howdy all, For reasons that are beyond me, when printf is called in amdgpu_device.c to print the CU info, it gives me a psp firmware load failure on a Radeon VII (Vega 20) gpu. Switching the printf statement to a DRM_INFO statement as used in the rest of amdgpu seems to fix it though. ok? diff --