mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	Use clang-format provided by build server
This commit is contained in:
		
							parent
							
								
									0740758b25
								
							
						
					
					
						commit
						d3783fcc52
					
				@ -60,16 +60,15 @@ void NVDRV::IoctlBase(Kernel::HLERequestContext& ctx, IoctlVersion version) {
 | 
			
		||||
 | 
			
		||||
    if (ctrl.must_delay) {
 | 
			
		||||
        ctrl.fresh_call = false;
 | 
			
		||||
        // clang-format off
 | 
			
		||||
        ctx.SleepClientThread(
 | 
			
		||||
            "NVServices::DelayedResponse", ctrl.timeout,
 | 
			
		||||
            [=](Kernel::SharedPtr<Kernel::Thread> thread, Kernel::HLERequestContext& ctx,
 | 
			
		||||
       ctx.SleepClientThread("NVServices::DelayedResponse", ctrl.timeout,
 | 
			
		||||
                             [=](Kernel::SharedPtr<Kernel::Thread> thread,
 | 
			
		||||
                                 Kernel::HLERequestContext& ctx,
 | 
			
		||||
                                 Kernel::ThreadWakeupReason reason) {
 | 
			
		||||
                                 IoctlCtrl ctrl2{ctrl};
 | 
			
		||||
                                 std::vector<u8> tmp_output = output;
 | 
			
		||||
                                 std::vector<u8> tmp_output2 = output2;
 | 
			
		||||
                u32 result = nvdrv->Ioctl(fd, command, input, input2, tmp_output, tmp_output2,
 | 
			
		||||
                                          ctrl2, version);
 | 
			
		||||
                                 u32 result = nvdrv->Ioctl(fd, command, input, input2, tmp_output,
 | 
			
		||||
                                                           tmp_output2, ctrl2, version);
 | 
			
		||||
                                 ctx.WriteBuffer(tmp_output, 0);
 | 
			
		||||
                                 if (version == IoctlVersion::Version3) {
 | 
			
		||||
                                     ctx.WriteBuffer(tmp_output2, 1);
 | 
			
		||||
@ -79,7 +78,6 @@ void NVDRV::IoctlBase(Kernel::HLERequestContext& ctx, IoctlVersion version) {
 | 
			
		||||
                                 rb.Push(result);
 | 
			
		||||
                             },
 | 
			
		||||
                             nvdrv->GetEventWriteable(ctrl.event_id));
 | 
			
		||||
        // clang-format on
 | 
			
		||||
    } else {
 | 
			
		||||
        ctx.WriteBuffer(output);
 | 
			
		||||
        if (version == IoctlVersion::Version3) {
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user